Further modules included.
[yaffs-website] / web / modules / contrib / libraries / src / ExternalLibrary / PhpFile / PhpFileLoaderInterface.php
1 <?php
2
3 namespace Drupal\libraries\ExternalLibrary\PhpFile;
4
5 /**
6  * Provides an interface for PHP file loaders.
7  *
8  * @see \Drupal\libraries\ExternalLibrary\PhpFile\PhpFileLibraryInterface
9  */
10 interface PhpFileLoaderInterface {
11
12   /**
13    * Loads a PHP file.
14    *
15    * @param string $file
16    *   The absolute file path to the PHP file.
17    */
18   public function load($file);
19
20 }