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