You are here

public function RngConfiguration::__construct in RNG - Events and Registrations 3.x

Same name and namespace in other branches
  1. 8.2 src/RngConfiguration.php \Drupal\rng\RngConfiguration::__construct()
  2. 8 src/RngConfiguration.php \Drupal\rng\RngConfiguration::__construct()

Constructs a new RegistrantFactory object.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config factory service.

\Drupal\courier\Service\IdentityChannelManagerInterface $identity_channel_manager: The identity channel manager.

File

src/RngConfiguration.php, line 35

Class

RngConfiguration
The RNG Configuration service.

Namespace

Drupal\rng

Code

public function __construct(ConfigFactoryInterface $config_factory, IdentityChannelManagerInterface $identity_channel_manager) {
  $this->configFactory = $config_factory;
  $this->identityChannelManager = $identity_channel_manager;
}