You are here

public function AdminContentNotificationService::__construct in Admin Content Notification 8.3

Creates a verbose messenger.

File

src/AdminContentNotificationService.php, line 63

Class

AdminContentNotificationService
AdminContentNotificationService implement helper service class.

Namespace

Drupal\admin_content_notification

Code

public function __construct(ConfigFactoryInterface $config_factory, AccountInterface $account, MailManagerInterface $mailManager, LinkGeneratorInterface $linkGenerator, ModuleHandlerInterface $moduleHandler) {
  $this->configFactory = $config_factory;
  $this->account = $account;
  $this->mailManager = $mailManager;
  $this->linkGenerator = $linkGenerator;
  $this->moduleHandler = $moduleHandler;
}