You are here

public function SplitCollectionStorage::read in Configuration Split 2.0.x

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/SplitCollectionStorage.php, line 64

Class

SplitCollectionStorage
A config storage that lives in a collection of another config storage.

Namespace

Drupal\config_split\Config

Code

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