You are here

LibraryAccessorInterface.php in Libraries API 8.3

File

src/ExternalLibrary/Utility/LibraryAccessorInterface.php
View source
<?php

namespace Drupal\libraries\ExternalLibrary\Utility;


/**
 * Provides an interface for classes giving access to a library.
 */
interface LibraryAccessorInterface {

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

}

Interfaces

Namesort descending Description
LibraryAccessorInterface Provides an interface for classes giving access to a library.