You are here

LibraryIdAccessorInterface.php in Libraries API 8.3

File

src/ExternalLibrary/Utility/LibraryIdAccessorInterface.php
View 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

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