* * @deprecated since 2.0, will be removed in 3.0. Use * {@link JWTAuthenticator} instead */ class JWTEntryPoint implements AuthenticationEntryPointInterface { public function __construct() { @trigger_error(sprintf('The "%s" class is deprecated since version 2.0 and will be removed in 3.0. Use "%s" instead.', self::class, JWTAuthenticator::class), E_USER_DEPRECATED); } /** * {@inheritdoc} */ public function start(Request $request, AuthenticationException $authException = null): Response { $response = new JWTAuthenticationFailureResponse(); return $response; } }