You are here

public function DevelMailLoggerController::__construct in Devel Mail Logger 8

Constructs a new DevelMailLoggerController object.

File

src/Controller/DevelMailLoggerController.php, line 47

Class

DevelMailLoggerController
Class DevelMailLoggerController.

Namespace

Drupal\devel_mail_logger\Controller

Code

public function __construct(Connection $database, DateFormatterInterface $date_formatter, FormBuilderInterface $form_builder, MailManagerInterface $plugin_manager_mail) {
  $this->database = $database;
  $this->dateFormatter = $date_formatter;
  $this->formBuilder = $form_builder;
  $this->pluginManagerMail = $plugin_manager_mail;
}