You are here

public function EventSubscriber::__construct in Drupal 8

Same name in this branch
  1. 8 core/modules/config/tests/config_transformer_test/src/EventSubscriber.php \Drupal\config_transformer_test\EventSubscriber::__construct()
  2. 8 core/modules/config/tests/config_import_test/src/EventSubscriber.php \Drupal\config_import_test\EventSubscriber::__construct()
  3. 8 core/modules/config/tests/config_collection_install_test/src/EventSubscriber.php \Drupal\config_collection_install_test\EventSubscriber::__construct()
  4. 8 core/modules/config/tests/config_events_test/src/EventSubscriber.php \Drupal\config_events_test\EventSubscriber::__construct()
Same name and namespace in other branches
  1. 9 core/modules/config/tests/config_transformer_test/src/EventSubscriber.php \Drupal\config_transformer_test\EventSubscriber::__construct()

EventSubscriber constructor.

Parameters

\Drupal\Core\Config\StorageInterface $active: The active config storage.

\Drupal\Core\Config\StorageInterface $sync: The sync config storage.

\Drupal\Core\State\StateInterface $state: The Drupal state.

File

core/modules/config/tests/config_transformer_test/src/EventSubscriber.php, line 50

Class

EventSubscriber
Class EventSubscriber.

Namespace

Drupal\config_transformer_test

Code

public function __construct(StorageInterface $active, StorageInterface $sync, StateInterface $state) {
  $this->active = $active;
  $this->sync = $sync;
  $this->state = $state;
}