Further modules included.
[yaffs-website] / web / modules / contrib / libraries / src / ExternalLibrary / PhpFile / PhpFileLoaderInterface.php
diff --git a/web/modules/contrib/libraries/src/ExternalLibrary/PhpFile/PhpFileLoaderInterface.php b/web/modules/contrib/libraries/src/ExternalLibrary/PhpFile/PhpFileLoaderInterface.php
new file mode 100644 (file)
index 0000000..52c1c62
--- /dev/null
@@ -0,0 +1,20 @@
+<?php
+
+namespace Drupal\libraries\ExternalLibrary\PhpFile;
+
+/**
+ * Provides an interface for PHP file loaders.
+ *
+ * @see \Drupal\libraries\ExternalLibrary\PhpFile\PhpFileLibraryInterface
+ */
+interface PhpFileLoaderInterface {
+
+  /**
+   * Loads a PHP file.
+   *
+   * @param string $file
+   *   The absolute file path to the PHP file.
+   */
+  public function load($file);
+
+}