public function ConfigContext::notify

Implements \Drupal\Core\Config\Context\ContextInterface::notify().

Overrides ContextInterface::notify

1 call to ConfigContext::notify()

File

drupal/core/lib/Drupal/Core/Config/Context/ConfigContext.php, line 106
Contains \Drupal\Core\Config\Context\ConfigContext.

Class

ConfigContext
Defines the base configuration context object.

Namespace

Drupal\Core\Config\Context

Code

public function notify($config_event_name, Config $config = NULL) {
  $this->eventDispatcher
    ->dispatch('config.' . $config_event_name, new ConfigEvent($this, $config));
}