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

__construct() public method

public __construct ( Symfony\Component\Security\SecurityContext $securityContext, Symfony\Component\Security\User\UserProviderInterface $provider, Symfony\Component\HttpKernel\Security\EntryPoint\DigestAuthenticationEntryPoint $authenticationEntryPoint, Symfony\Component\HttpKernel\Log\LoggerInterface $logger = null )
$securityContext Symfony\Component\Security\SecurityContext
$provider Symfony\Component\Security\User\UserProviderInterface
$authenticationEntryPoint Symfony\Component\HttpKernel\Security\EntryPoint\DigestAuthenticationEntryPoint
$logger Symfony\Component\HttpKernel\Log\LoggerInterface
    public function __construct(SecurityContext $securityContext, UserProviderInterface $provider, DigestAuthenticationEntryPoint $authenticationEntryPoint, LoggerInterface $logger = null)
    {
        $this->securityContext = $securityContext;
        $this->provider = $provider;
        $this->authenticationEntryPoint = $authenticationEntryPoint;
        $this->logger = $logger;
    }
DigestAuthenticationListener