public function QueuersService::__construct in Purge 8.3
Construct the queuers service.
Parameters
\Drupal\Component\Plugin\PluginManagerInterface $pluginManager: The plugin manager for this service.
\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The factory for configuration objects.
File
- src/
Plugin/ Purge/ Queuer/ QueuersService.php, line 33
Class
- QueuersService
- Provides a service that provides access to loaded queuers.
Namespace
Drupal\purge\Plugin\Purge\QueuerCode
public function __construct(PluginManagerInterface $pluginManager, ConfigFactoryInterface $config_factory) {
$this->pluginManager = $pluginManager;
$this->configFactory = $config_factory;
}