Further modules included.
[yaffs-website] / web / modules / contrib / libraries / src / ExternalLibrary / Dependency / DependentLibraryInterface.php
1 <?php
2
3 namespace Drupal\libraries\ExternalLibrary\Dependency;
4
5 use Drupal\libraries\ExternalLibrary\LibraryInterface;
6
7 /**
8  * Provides an interface for libraries that depend on other libraries.
9  *
10  * @todo Implement versioned dependencies.
11  */
12 interface DependentLibraryInterface extends LibraryInterface {
13
14   /**
15    * Returns the libraries dependencies, if any.
16    *
17    * @return string[]
18    *   An array of library IDs of libraries that the library depends on.
19    */
20   public function getDependencies();
21
22 }