962e9dbb1e151c7478d9ebebb814f85224d5d795
[yaffs-website] / web / modules / contrib / libraries / src / ExternalLibrary / Type / LibraryLoadingListenerInterface.php
1 <?php
2
3 namespace Drupal\libraries\ExternalLibrary\Type;
4
5 use Drupal\libraries\ExternalLibrary\LibraryInterface;
6
7 /**
8  * An interface for library types that want to react to library instantiation.
9  */
10 interface LibraryLoadingListenerInterface {
11
12   /**
13    * Reacts to the instantiation of a library.
14    *
15    * @param \Drupal\libraries\ExternalLibrary\LibraryInterface $library
16    *   The library that is being instantiated.
17    */
18   public function onLibraryLoad(LibraryInterface $library);
19
20 }