function DevelDumperManager::__construct
Constructs a DevelDumperPluginManager object.
Parameters
\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config factory service.
\Drupal\Core\Session\AccountProxyInterface $account: The current account.
\Drupal\devel\DevelDumperPluginManagerInterface $dumper_manager: The devel dumper plugin manager.
File
- 
              src/DevelDumperManager.php, line 50 
Class
- DevelDumperManager
- Class DevelDumperManager.
Namespace
Drupal\develCode
public function __construct(ConfigFactoryInterface $config_factory, AccountProxyInterface $account, DevelDumperPluginManagerInterface $dumper_manager) {
  $this->config = $config_factory->get('devel.settings');
  $this->account = $account;
  $this->dumperManager = $dumper_manager;
}