Further modules included.
[yaffs-website] / web / modules / contrib / libraries / src / ExternalLibrary / PhpFile / PhpFileLibraryInterface.php
1 <?php
2
3 namespace Drupal\libraries\ExternalLibrary\PhpFile;
4
5 use Drupal\libraries\ExternalLibrary\Local\LocalLibraryInterface;
6
7 /**
8  * Provides an interface for libraries with PHP files.
9  *
10  * @see \Drupal\libraries\ExternalLibrary\PhpFile\PhpFileLoaderInterface
11  */
12 interface PhpFileLibraryInterface extends LocalLibraryInterface {
13
14   /**
15    * Returns the PHP files of this library.
16    *
17    * @return string[]
18    *   An array of absolute file paths of PHP files.
19    */
20   public function getPhpFiles();
21
22 }