You are here

public function KanbanService::__construct in Content Planner 8

Constructs a new KanbanService object.

File

modules/content_kanban/src/KanbanService.php, line 84

Class

KanbanService
Class KanbanService.

Namespace

Drupal\content_kanban

Code

public function __construct(ConfigFactoryInterface $config_factory, Connection $database, ModerationInformationInterface $moderation_information, EntityTypeManager $entityTypeManager, ModuleHandlerInterface $moduleHandler, ContentTypeConfigService $contentTypConfigService) {
  $this->configFactory = $config_factory;
  $this->database = $database;
  $this->moderationInformation = $moderation_information;
  $this->entityTypeManager = $entityTypeManager;
  $this->moduleHandler = $moduleHandler;
  $this->contentTypConfigService = $contentTypConfigService;
}