function RecipeConfigStorageWrapper::read

Same name in other branches
  1. 11.x core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php \Drupal\Core\Recipe\RecipeConfigStorageWrapper::read()

Overrides StorageInterface::read

File

core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php, line 75

Class

RecipeConfigStorageWrapper
Merges two storages together.

Namespace

Drupal\Core\Recipe

Code

public function read($name) : array|bool {
    return $this->storageA
        ->read($name) ?: $this->storageB
        ->read($name);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.