Implements Drupal\Core\Config\StorageInterface::exists().
Overrides StorageInterface::exists
public function exists($name) {
// The cache would read in the entire data (instead of only checking whether
// any data exists), and on a potential cache miss, an additional storage
// lookup would have to happen, so check the storage directly.
return $this->storage
->exists($name);
}