public function __construct(DataStoresInterface $dataStore, ConfigureGeneratorFactoryInterface $configureGeneratorFactory)
 {
     $this->configureGeneratorFactory = $configureGeneratorFactory;
     parent::__construct($dataStore);
 }
Beispiel #2
0
 /**
  * Scheduler constructor.
  *
  * @param DataStoreAbstract $filterDs
  * @param Timeline $timelineDs
  * @param CallbackManager $callbackManager
  */
 public function __construct(DataStoreAbstract $filterDs, Timeline $timelineDs, CallbackManager $callbackManager)
 {
     parent::__construct($filterDs);
     $this->timelineDs = $timelineDs;
     $this->callbackManager = $callbackManager;
 }
Beispiel #3
0
 public function __construct(DataStoresInterface $dataStore)
 {
     $this->scriptName = "getBrand";
     parent::__construct($dataStore);
 }
Beispiel #4
0
 public function __construct(DataStoresInterface $dataStore)
 {
     $this->scriptName = 'getCategory';
     parent::__construct($dataStore);
 }