public function RngConfiguration::__construct in RNG - Events and Registrations 8
Same name and namespace in other branches
- 8.2 src/RngConfiguration.php \Drupal\rng\RngConfiguration::__construct()
- 3.x 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\rngCode
public function __construct(ConfigFactoryInterface $config_factory, IdentityChannelManagerInterface $identity_channel_manager) {
$this->configFactory = $config_factory;
$this->identityChannelManager = $identity_channel_manager;
}