Further modules included.
[yaffs-website] / web / modules / contrib / libraries / src / ExternalLibrary / PhpFile / PhpFileLibraryInterface.php
diff --git a/web/modules/contrib/libraries/src/ExternalLibrary/PhpFile/PhpFileLibraryInterface.php b/web/modules/contrib/libraries/src/ExternalLibrary/PhpFile/PhpFileLibraryInterface.php
new file mode 100644 (file)
index 0000000..01ca453
--- /dev/null
@@ -0,0 +1,22 @@
+<?php
+
+namespace Drupal\libraries\ExternalLibrary\PhpFile;
+
+use Drupal\libraries\ExternalLibrary\Local\LocalLibraryInterface;
+
+/**
+ * Provides an interface for libraries with PHP files.
+ *
+ * @see \Drupal\libraries\ExternalLibrary\PhpFile\PhpFileLoaderInterface
+ */
+interface PhpFileLibraryInterface extends LocalLibraryInterface {
+
+  /**
+   * Returns the PHP files of this library.
+   *
+   * @return string[]
+   *   An array of absolute file paths of PHP files.
+   */
+  public function getPhpFiles();
+
+}