You are here

public function ReadOnlyStorage::read in Config Filter 8.2

Same name and namespace in other branches
  1. 8 src/Config/ReadOnlyStorage.php \Drupal\config_filter\Config\ReadOnlyStorage::read()

Reads configuration data from the storage.

Parameters

string $name: The name of a configuration object to load.

Return value

array|bool The configuration data stored for the configuration object name. If no configuration data exists for the given name, FALSE is returned.

Overrides StorageInterface::read

File

src/Config/ReadOnlyStorage.php, line 44

Class

ReadOnlyStorage
Class ReadOnlyStorage.

Namespace

Drupal\config_filter\Config

Code

public function read($name) {
  return $this->storage
    ->read($name);
}