public function ConfigContext::set

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

Overrides ContextInterface::set

1 call to ConfigContext::set()
UserConfigContext::setAccount in drupal/core/modules/user/lib/Drupal/user/UserConfigContext.php
Creates the configuration context for user accounts.

File

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

Class

ConfigContext
Defines the base configuration context object.

Namespace

Drupal\Core\Config\Context

Code

public function set($key, $value) {
  $this->data[$key] = $value;
}