Further modules included.
[yaffs-website] / web / modules / contrib / libraries / src / ExternalLibrary / Utility / LibraryAccessorInterface.php
1 <?php
2
3 namespace Drupal\libraries\ExternalLibrary\Utility;
4
5 /**
6  * Provides an interface for classes giving access to a library.
7  */
8 interface LibraryAccessorInterface {
9
10   /**
11    * Returns the library.
12    *
13    * @return \Drupal\libraries\ExternalLibrary\LibraryInterface
14    *   The library.
15    */
16   public function getLibrary();
17
18 }