function RecipeOverrideConfigStorage::exists

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

Overrides StorageInterface::exists

File

core/lib/Drupal/Core/Recipe/RecipeOverrideConfigStorage.php, line 36

Class

RecipeOverrideConfigStorage
Wraps a config storage to allow recipe provided configuration to override it.

Namespace

Drupal\Core\Recipe

Code

public function exists($name) : bool {
    return $this->wrappedStorage
        ->exists($name);
}

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