You are here

public function GhostStorage::rename in Configuration Split 8

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 StorageInterface::rename

File

src/Config/GhostStorage.php, line 36

Class

GhostStorage
Class GhostStorage.

Namespace

Drupal\config_split\Config

Code

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