You are here

public function ReadOnlyStorage::readMultiple in Config Filter 8.2

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

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/ReadOnlyStorage.php, line 51

Class

ReadOnlyStorage
Class ReadOnlyStorage.

Namespace

Drupal\config_filter\Config

Code

public function readMultiple(array $names) {
  return $this->storage
    ->readMultiple($names);
}