You are here

public function ConfigRevertEvent::getName in Configuration Update Manager 8

Returns the name of the config item, without prefix.

Return value

string The name of the config item being imported/reverted/deleted, with the prefix.

File

src/ConfigRevertEvent.php, line 62

Class

ConfigRevertEvent
Event context class for configuration revert/import events.

Namespace

Drupal\config_update

Code

public function getName() {
  return $this->name;
}