protected function RoleConfigurationHandler::registerProcessors in Configuration Management 7.3
Overrides ConfigurationHandler::registerProcessors
File
- src/
Handlers/ RoleConfigurationHandler.php, line 16
Class
Namespace
Configuration\HandlersCode
protected function registerProcessors() {
foreach (\Configuration\Processors\RoleProcessor::availableProcessors() as $name) {
$processor = new \Configuration\Processors\RoleProcessor($name, $this->configuration_manager);
$this->configuration_manager
->registerProcessor($name, $processor);
}
}