Neos\Flow\Security\Authorization\RequestFilter::__construct PHP Метод

__construct() публичный Метод

Constructor.
public __construct ( Neos\Flow\Security\RequestPatternInterface $pattern, Neos\Flow\Security\Authorization\InterceptorInterface $securityInterceptor )
$pattern Neos\Flow\Security\RequestPatternInterface The pattern this filter matches
$securityInterceptor Neos\Flow\Security\Authorization\InterceptorInterface The interceptor called on pattern match
    public function __construct(RequestPatternInterface $pattern, InterceptorInterface $securityInterceptor)
    {
        $this->pattern = $pattern;
        $this->securityInterceptor = $securityInterceptor;
    }