Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drush / drush / lib / Drush / Make / Parser / ParserInterface.php
diff --git a/vendor/drush/drush/lib/Drush/Make/Parser/ParserInterface.php b/vendor/drush/drush/lib/Drush/Make/Parser/ParserInterface.php
deleted file mode 100644 (file)
index d9e16a2..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-
-/**
- * @file
- * Interface for make file parsing.
- */
-
-namespace Drush\Make\Parser;
-
-interface ParserInterface {
-
-  /**
-   * Determine if a given file is supported.
-   *
-   * @param string $filename
-   *
-   * @return bool
-   */
-  public static function supportedFile($filename);
-
-  /**
-   * Parse an input string into an array.
-   *
-   * @param string $data
-   *
-   * @return array
-   *   Makefile data as an array.
-   */
-  public static function parse($data);
-
-}