Further modules included.
[yaffs-website] / web / modules / contrib / libraries / src / ExternalLibrary / Type / LibraryCreationListenerInterface.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 LibraryCreationListenerInterface {
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 onLibraryCreate(LibraryInterface $library);
19
20 }