function DataProcessorManager::__construct

Overrides DefaultPluginManager::__construct

File

src/Context/DataProcessorManager.php, line 19

Class

DataProcessorManager
Plugin manager for Rules data processors.

Namespace

Drupal\rules\Context

Code

public function __construct(\Traversable $namespaces, ModuleHandlerInterface $module_handler, $plugin_definition_annotation_name = RulesDataProcessor::class) {
    $this->alterInfo('rules_data_processor_info');
    parent::__construct('Plugin/RulesDataProcessor', $namespaces, $module_handler, DataProcessorInterface::class, $plugin_definition_annotation_name);
}