diff --git a/core/lib/Drupal/Core/Config/Context/ConfigContext.php b/core/lib/Drupal/Core/Config/Context/ConfigContext.php index a0ee595..a6bf62f 100644 --- a/core/lib/Drupal/Core/Config/Context/ConfigContext.php +++ b/core/lib/Drupal/Core/Config/Context/ConfigContext.php @@ -1,4 +1,4 @@ -setUuid(); @@ -70,21 +70,21 @@ public function init() { } /** - * Implements Drupal\Core\Config\Context\ContextInterface::get(). + * Implements \Drupal\Core\Config\Context\ContextInterface::get(). */ public function get($key) { return array_key_exists($key, $this->data) ? $this->data[$key] : NULL; } /** - * Implements Drupal\Core\Config\Context\ContextInterface::set(). + * Implements \Drupal\Core\Config\Context\ContextInterface::set(). */ public function set($key, $value) { $this->data[$key] = $value; } /** - * Implements Drupal\Core\Config\Context\ContextInterface::setUuid(). + * Implements \Drupal\Core\Config\Context\ContextInterface::setUuid(). */ public function setUuid() { $uuid = new Uuid(); @@ -92,14 +92,14 @@ public function setUuid() { } /** - * Implements Drupal\Core\Config\Context\ContextInterface::getUuid(). + * Implements \Drupal\Core\Config\Context\ContextInterface::getUuid(). */ public function getUuid() { return $this->uuid; } /** - * Implements Drupal\Core\Config\Context\ContextInterface::notify(). + * Implements \Drupal\Core\Config\Context\ContextInterface::notify(). */ public function notify($config_event_name, Config $config = NULL) { $this->eventDispatcher->dispatch('config.' . $config_event_name, new ConfigEvent($this, $config));