You are here

public function PrivateMessageThreadManager::__construct in Private Message 8.2

Same name and namespace in other branches
  1. 8 src/Service/PrivateMessageThreadManager.php \Drupal\private_message\Service\PrivateMessageThreadManager::__construct()

PrivateMessageThreadManager constructor.

Parameters

\Drupal\private_message\Service\PrivateMessageServiceInterface $privateMessageService: The private message service.

\Drupal\private_message\Service\PrivateMessageNotifierInterface $privateMessageNotifier: The private message notifier service.

File

src/Service/PrivateMessageThreadManager.php, line 66

Class

PrivateMessageThreadManager
The Private Message generator class.

Namespace

Drupal\private_message\Service

Code

public function __construct(PrivateMessageServiceInterface $privateMessageService, PrivateMessageNotifierInterface $privateMessageNotifier) {
  $this->privateMessageService = $privateMessageService;
  $this->privateMessageNotifier = $privateMessageNotifier;
}