You are here

public function TestLibraryFilesStream::getName in Libraries API 8.3

Returns the name of the stream wrapper for use in the UI.

Return value

string The stream wrapper name.

Overrides PrivateStreamTrait::getName

See also

\Drupal\Core\StreamWrapper\StreamWrapperInterface::getName()

File

tests/src/Kernel/ExternalLibrary/TestLibraryFilesStream.php, line 61

Class

TestLibraryFilesStream
Provides a stream wrapper for accessing test library files.

Namespace

Drupal\Tests\libraries\Kernel\ExternalLibrary

Code

public function getName() {
  $this
    ->t('Test library files');
}