PartKeepr\AuthBundle\Security\EntryPoint\NullEntryPoint::start PHP Method

start() public method

public start ( Request $request, Symfony\Component\Security\Core\Exception\AuthenticationException $authException = null )
$request Symfony\Component\HttpFoundation\Request
$authException Symfony\Component\Security\Core\Exception\AuthenticationException
    public function start(Request $request, AuthenticationException $authException = null)
    {
        $response = new Response();
        $response->setStatusCode(401);
        return $response;
    }
NullEntryPoint