You are here

interface LibraryAccessorInterface in Libraries API 8.3

Provides an interface for classes giving access to a library.

Hierarchy

Expanded class hierarchy of LibraryAccessorInterface

All classes that implement LibraryAccessorInterface

4 files declare their use of LibraryAccessorInterface
InvalidLibraryDependencyException.php in src/ExternalLibrary/Exception/InvalidLibraryDependencyException.php
libraries.module in ./libraries.module
External library handling for Drupal modules.
LibraryNotInstalledException.php in src/ExternalLibrary/Exception/LibraryNotInstalledException.php
UnknownLibraryVersionException.php in src/ExternalLibrary/Exception/UnknownLibraryVersionException.php

File

src/ExternalLibrary/Utility/LibraryAccessorInterface.php, line 8

Namespace

Drupal\libraries\ExternalLibrary\Utility
View source
interface LibraryAccessorInterface {

  /**
   * Returns the library.
   *
   * @return \Drupal\libraries\ExternalLibrary\LibraryInterface
   *   The library.
   */
  public function getLibrary();

}

Members