PartKeepr\DoctrineReflectionBundle\Filter\AdvancedSearchFilter::__construct PHP Method

__construct() public method

public __construct ( Doctrine\Common\Persistence\ManagerRegistry $managerRegistry, Dunglas\ApiBundle\Api\IriConverterInterface $iriConverter, Symfony\Component\PropertyAccess\PropertyAccessorInterface $propertyAccessor, Symfony\Component\HttpFoundation\RequestStack $requestStack, array $properties = null )
$managerRegistry Doctrine\Common\Persistence\ManagerRegistry
$iriConverter Dunglas\ApiBundle\Api\IriConverterInterface
$propertyAccessor Symfony\Component\PropertyAccess\PropertyAccessorInterface
$requestStack Symfony\Component\HttpFoundation\RequestStack
$properties array Null to allow filtering on all properties with the exact strategy or a map of property name with strategy.
    public function __construct(ManagerRegistry $managerRegistry, IriConverterInterface $iriConverter, PropertyAccessorInterface $propertyAccessor, RequestStack $requestStack, array $properties = null)
    {
        parent::__construct($managerRegistry, $properties);
        $this->requestStack = $requestStack;
        $this->iriConverter = $iriConverter;
        $this->propertyAccessor = $propertyAccessor;
    }