public function JobCheckoutManager::__construct

File

src/JobCheckoutManager.php, line 50

Class

JobCheckoutManager
Provides functionality related to job checkout and submissions.

Namespace

Drupal\tmgmt

Code

public function __construct(RequestStack $request_stack, JobQueue $job_queue, ModuleHandlerInterface $module_handler, ConfigFactoryInterface $config_factory, EntityTypeManagerInterface $entity_type_manager) {
  $this->requestStack = $request_stack;
  $this->jobQueue = $job_queue;
  $this->moduleHandler = $module_handler;
  $this->configFactory = $config_factory;
  $this->entityTypeManager = $entity_type_manager;
}