Beispiel #1
0
 /**
  * @param EntityFactoryInterface $entityFactory
  * @param LoggerInterface $logger
  * @param FetchStrategyInterface $fetchStrategy
  * @param ManagerInterface $eventManager
  * @param ValueProcessor $valueProcessor
  * @param AdapterInterface|null $connection
  * @param AbstractDb|null $resource
  */
 public function __construct(EntityFactoryInterface $entityFactory, LoggerInterface $logger, FetchStrategyInterface $fetchStrategy, ManagerInterface $eventManager, ValueProcessor $valueProcessor, AdapterInterface $connection = null, AbstractDb $resource = null)
 {
     $this->valueProcessor = $valueProcessor;
     parent::__construct($entityFactory, $logger, $fetchStrategy, $eventManager, $connection, $resource);
 }