public function SplitCollectionStorage::readMultiple in Configuration Split 2.0.x
Reads configuration data from the storage.
Parameters
array $names: List of names of the configuration objects to load.
Return value
array A list of the configuration data stored for the configuration object name that could be loaded for the passed list of names.
Overrides StorageInterface::readMultiple
File
- src/
Config/ SplitCollectionStorage.php, line 71
Class
- SplitCollectionStorage
- A config storage that lives in a collection of another config storage.
Namespace
Drupal\config_split\ConfigCode
public function readMultiple(array $names) {
return $this
->getStorage()
->readMultiple($names);
}