Exemplo n.º 1
0
 /**
  * @param ManagerRegistry           $managerRegistry
  * @param RequestStack              $requestStack
  * @param IriConverterInterface     $iriConverter
  * @param PropertyAccessorInterface $propertyAccessor
  * @param null|array                $properties       Null to allow filtering on all properties with the exact strategy or a map of property name with strategy.
  */
 public function __construct(ManagerRegistry $managerRegistry, RequestStack $requestStack, IriConverterInterface $iriConverter, PropertyAccessorInterface $propertyAccessor, array $properties = null)
 {
     parent::__construct($managerRegistry, $properties);
     $this->iriConverter = $iriConverter;
     $this->propertyAccessor = $propertyAccessor;
     $this->requestStack = $requestStack;
 }
Exemplo n.º 2
0
 /**
  * @param ManagerRegistry $managerRegistry
  * @param RequestStack    $requestStack
  * @param array|null      $properties
  */
 public function __construct(ManagerRegistry $managerRegistry, RequestStack $requestStack, array $properties = null)
 {
     parent::__construct($managerRegistry, $properties);
     $this->requestStack = $requestStack;
 }
Exemplo n.º 3
0
 /**
  * @param ManagerRegistry           $managerRegistry
  * @param PropertyAccessorInterface $propertyAccessor
  * @param null|array                $properties       Null to allow filtering on all properties with the exact strategy or a map of property name with strategy.
  */
 public function __construct(ManagerRegistry $managerRegistry, PropertyAccessorInterface $propertyAccessor, array $properties = null)
 {
     parent::__construct($managerRegistry, $properties);
     $this->propertyAccessor = $propertyAccessor;
 }
 /**
  * @param ManagerRegistry $managerRegistry
  * @param string          $orderParameter  Keyword used to retrieve the value.
  * @param array|null      $properties      List of property names on which the filter will be enabled.
  */
 public function __construct(ManagerRegistry $managerRegistry, $orderParameter, array $properties = null)
 {
     parent::__construct($managerRegistry, $properties);
     $this->orderParameter = $orderParameter;
 }