You are here

public function ContentController::__construct in Heartbeat 8

Constructs a new ContentController object.

File

modules/statusmessage/src/Controller/ContentController.php, line 46

Class

ContentController
Class ContentController.

Namespace

Drupal\statusmessage\Controller

Code

public function __construct(EntityTypeManager $entity_type_manager, QueryFactory $entity_query, StatusService $statusservice, StatusTypeService $status_type_service) {
  $this->entityTypeManager = $entity_type_manager;
  $this->entityQuery = $entity_query;
  $this->statusService = $statusservice;
  $this->statusTypeService = $status_type_service;
}