public function __construct(LoggerInterface $logger, Processor $processor, VendorManagerInterface $manager, VendorInterface $operator, VendorInterface $technical)
 {
     parent::__construct($logger);
     $this->vendorProcessor = $processor;
     $this->vendorManager = $manager;
     $this->technical = $technical;
     $this->operator = $operator;
 }
 /**
  * GenerateCommand constructor.
  * @param LoggerInterface $logger
  * @param CashoutInitializer $processor
  * @param array $cycleDays
  * @param int $cycleHour
  * @param int $cycleMinute
  * @param $cycleIntervalBefore
  * @param $cycleIntervalAfter
  * @param $transactionFilterRegex
  */
 public function __construct(LoggerInterface $logger, CashoutInitializer $processor, array $cycleDays, $cycleHour, $cycleMinute, $cycleIntervalBefore, $cycleIntervalAfter, $transactionFilterRegex)
 {
     $this->processor = $processor;
     $this->cycleDays = is_array($cycleDays) ? $cycleDays : array($cycleDays);
     $this->cycleHour = $cycleHour;
     $this->cycleMinute = $cycleMinute;
     $this->cycleIntervalBefore = $cycleIntervalBefore;
     $this->cycleIntervalAfter = $cycleIntervalAfter;
     $this->transactionFilterRegex = $transactionFilterRegex;
     parent::__construct($logger);
 }
 /**
  * RecordCommand constructor.
  * @param LoggerInterface $logger
  * @param Processor $vendorProcessor
  */
 public function __construct(LoggerInterface $logger, Processor $vendorProcessor)
 {
     parent::__construct($logger);
     $this->vendorProcessor = $vendorProcessor;
 }
 public function __construct(LoggerInterface $logger, VendorProcessor $processor, $tmpPath)
 {
     $this->processor = $processor;
     $this->tmpPath = $tmpPath;
     parent::__construct($logger);
 }
 public function __construct(LoggerInterface $logger, CashoutProcessor $processor)
 {
     parent::__construct($logger);
     $this->processor = $processor;
 }
 public function __construct(LoggerInterface $logger, Processor $processor, $merchantGroupId)
 {
     parent::__construct($logger);
     $this->vendorProcessor = $processor;
     $this->merchantGroupId = $merchantGroupId;
 }