You are here

public function GhostStorage::rename in Config Filter 8

Same name and namespace in other branches
  1. 8.2 src/Config/GhostStorage.php \Drupal\config_filter\Config\GhostStorage::rename()

Renames a configuration object in the storage.

Parameters

string $name: The name of a configuration object to rename.

string $new_name: The new name of a configuration object.

Return value

bool TRUE on success, FALSE otherwise.

Overrides ReadOnlyStorage::rename

File

src/Config/GhostStorage.php, line 35

Class

GhostStorage
Class GhostStorage.

Namespace

Drupal\config_filter\Config

Code

public function rename($name, $new_name) {
  return TRUE;
}