You are here

public function ReadOnlyStorage::rename in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Config/ReadOnlyStorage.php \Drupal\Core\Config\ReadOnlyStorage::rename()
  2. 9 core/lib/Drupal/Core/Config/ReadOnlyStorage.php \Drupal\Core\Config\ReadOnlyStorage::rename()

File

core/lib/Drupal/Core/Config/ReadOnlyStorage.php, line 65

Class

ReadOnlyStorage
A ReadOnlyStorage decorates a storage and does not allow writing to it.

Namespace

Drupal\Core\Config

Code

public function rename($name, $new_name) {
  throw new \BadMethodCallException(__METHOD__ . ' is not allowed on a ReadOnlyStorage');
}