You are here

public function EntityDebugController::__construct in Devel 8.3

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

EntityDebugController constructor.

Parameters

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

File

src/Controller/EntityDebugController.php, line 33

Class

EntityDebugController
Controller for devel entity debug.

Namespace

Drupal\devel\Controller

Code

public function __construct(DevelDumperManagerInterface $dumper) {
  $this->dumper = $dumper;
}