Symfony\Component\HttpKernel\Security\Firewall\ExceptionListener::__construct PHP Method

__construct() public method

public __construct ( Symfony\Component\Security\SecurityContext $context, Symfony\Component\Security\Authentication\EntryPoint\AuthenticationEntryPointInterface $authenticationEntryPoint = null, $errorPage = null, Symfony\Component\HttpKernel\Log\LoggerInterface $logger = null )
$context Symfony\Component\Security\SecurityContext
$authenticationEntryPoint Symfony\Component\Security\Authentication\EntryPoint\AuthenticationEntryPointInterface
$logger Symfony\Component\HttpKernel\Log\LoggerInterface
    public function __construct(SecurityContext $context, AuthenticationEntryPointInterface $authenticationEntryPoint = null, $errorPage = null, LoggerInterface $logger = null)
    {
        $this->context = $context;
        $this->authenticationEntryPoint = $authenticationEntryPoint;
        $this->errorPage = $errorPage;
        $this->logger = $logger;
    }