Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drush / drush / lib / Drush / Make / Parser / ParserYaml.php
diff --git a/vendor/drush/drush/lib/Drush/Make/Parser/ParserYaml.php b/vendor/drush/drush/lib/Drush/Make/Parser/ParserYaml.php
deleted file mode 100644 (file)
index 2591619..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<?php
-
-/**
- * @file
- * Parser for YAML format.
- */
-
-namespace Drush\Make\Parser;
-
-use Symfony\Component\Yaml\Yaml;
-
-class ParserYaml implements ParserInterface {
-
-  /**
-   * {@inheritdoc}
-   */
-  public static function supportedFile($filename) {
-    $info = pathinfo($filename);
-    return isset($info['extension']) && $info['extension'] === 'yml';
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public static function parse($data) {
-    return Yaml::parse($data);
-  }
-
-}