LibraryIdAccessorInterface.php in Libraries API 8.3
Namespace
Drupal\libraries\ExternalLibrary\UtilityFile
src/ExternalLibrary/Utility/LibraryIdAccessorInterface.phpView source
<?php
namespace Drupal\libraries\ExternalLibrary\Utility;
/**
* Provides an interface for classes giving access to a library ID.
*/
interface LibraryIdAccessorInterface {
/**
* Returns the ID of the library.
*
* @return string
* The library ID.
*/
public function getLibraryId();
}
Interfaces
Name | Description |
---|---|
LibraryIdAccessorInterface | Provides an interface for classes giving access to a library ID. |