You are here

public function NullRepositoryHandler::getDescription in Workspace 8.2

Returns the repository handler plugin description.

Return value

string The description text, which could be a plain string or an object that can be cast to a string.

Overrides RepositoryHandlerInterface::getDescription

File

src/Plugin/RepositoryHandler/NullRepositoryHandler.php, line 78

Class

NullRepositoryHandler
Defines a fallback repository handler plugin.

Namespace

Drupal\workspace\Plugin\RepositoryHandler

Code

public function getDescription() {
  return $this
    ->getPluginDefinition()['description'];
}