public function __construct(DataStoresInterface $dataStore, ConfigureGeneratorFactoryInterface $configureGeneratorFactory)
 {
     $this->configureGeneratorFactory = $configureGeneratorFactory;
     parent::__construct($dataStore);
 }
Beispiel #2
0
 protected function postQuery(&$result, Query $query)
 {
     array_walk($result, function (&$item, $key) {
         $item['callback'] = unserialize($item['callback']);
     });
     parent::postQuery($result, $query);
 }
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);
 }