You are here

public function DummyRemoteStreamWrapper::getName in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/file/tests/file_test/src/StreamWrapper/DummyRemoteStreamWrapper.php \Drupal\file_test\StreamWrapper\DummyRemoteStreamWrapper::getName()

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

Return value

string The stream wrapper name.

Overrides PublicStream::getName

1 method overrides DummyRemoteStreamWrapper::getName()
DummyRemoteReadOnlyStreamWrapper::getName in core/modules/file/tests/file_test/src/StreamWrapper/DummyRemoteReadOnlyStreamWrapper.php
Returns the name of the stream wrapper for use in the UI.

File

core/modules/file/tests/file_test/src/StreamWrapper/DummyRemoteStreamWrapper.php, line 19

Class

DummyRemoteStreamWrapper
Helper class for testing the stream wrapper registry.

Namespace

Drupal\file_test\StreamWrapper

Code

public function getName() {
  return t('Dummy files (remote)');
}