You are here

public function BucketJobManager::__construct in TMGMT Translator Smartling 8.4

Same name and namespace in other branches
  1. 8.3 src/Smartling/BucketJobManager.php \Drupal\tmgmt_smartling\Smartling\BucketJobManager::__construct()

BucketJobManager constructor.

Parameters

\Psr\Log\LoggerInterface $logger:

\Drupal\tmgmt_smartling\Smartling\SmartlingApiWrapper $api_wrapper:

\Drupal\Core\Extension\ModuleHandlerInterface $module_handler:

\Drupal\tmgmt_extension_suit\Utils\UniqueQueueItem $unique_queue_item_util:

File

src/Smartling/BucketJobManager.php, line 55
BucketJobManager.

Class

BucketJobManager
Class BucketJobManager.

Namespace

Drupal\tmgmt_smartling\Smartling

Code

public function __construct(LoggerInterface $logger, SmartlingApiWrapper $api_wrapper, ModuleHandlerInterface $module_handler, UniqueQueueItem $unique_queue_item_util) {
  $this->logger = $logger;
  $this->apiWrapper = $api_wrapper;
  $this->moduleHandler = $module_handler;
  $this->uniqueQueueItemUtil = $unique_queue_item_util;
}