You are here

public function ContainerInfoController::__construct in Devel 8

Same name and namespace in other branches
  1. 8.3 src/Controller/ContainerInfoController.php \Drupal\devel\Controller\ContainerInfoController::__construct()
  2. 8.2 src/Controller/ContainerInfoController.php \Drupal\devel\Controller\ContainerInfoController::__construct()
  3. 4.x src/Controller/ContainerInfoController.php \Drupal\devel\Controller\ContainerInfoController::__construct()

ServiceInfoController constructor.

Parameters

\Drupal\Core\DrupalKernelInterface $drupalKernel: The drupal kernel.

\Drupal\devel\DevelDumperManagerInterface $dumper: The dumper manager service.

File

src/Controller/ContainerInfoController.php, line 44

Class

ContainerInfoController
Provides route responses for the container info pages.

Namespace

Drupal\devel\Controller

Code

public function __construct(DrupalKernelInterface $drupalKernel, DevelDumperManagerInterface $dumper) {
  $this->kernel = $drupalKernel;
  $this->dumper = $dumper;
}