You are here

public function DevelDebugLogController::__construct in Devel Debug Log 8

DevelDebugLogController constructor.

Parameters

Connection $database:

DateFormatter $dateFormatter:

Serializer $serializer:

FormBuilderInterface $formBuilder:

File

src/Controller/DevelDebugLogController.php, line 62

Class

DevelDebugLogController

Namespace

Drupal\devel_debug_log\Controller

Code

public function __construct(Connection $database, DateFormatter $dateFormatter, Serializer $serializer, FormBuilderInterface $formBuilder) {
  $this->database = $database;
  $this->dateFormatter = $dateFormatter;
  $this->serializer = $serializer;
  $this->formBuilder = $formBuilder;
}