welcome back to dyb-tech
This commit is contained in:
+50
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
namespace Lexik\Bundle\JWTAuthenticationBundle\Response;
|
||||
|
||||
use Symfony\Component\HttpFoundation\JsonResponse;
|
||||
|
||||
/**
|
||||
* JWTAuthenticationFailureResponse.
|
||||
*
|
||||
* Response sent on failed JWT authentication (can be replaced by a custom Response).
|
||||
*
|
||||
* @author Robin Chalas <robin.chalas@gmail.com>
|
||||
*/
|
||||
final class JWTAuthenticationFailureResponse extends JWTCompatAuthenticationFailureResponse
|
||||
{
|
||||
private $message;
|
||||
|
||||
public function __construct(string $message = 'Bad credentials', int $statusCode = JsonResponse::HTTP_UNAUTHORIZED)
|
||||
{
|
||||
$this->message = $message;
|
||||
|
||||
parent::__construct(null, $statusCode, ['WWW-Authenticate' => 'Bearer']);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the failure message.
|
||||
*
|
||||
* @param string $message
|
||||
*
|
||||
* @return JWTAuthenticationFailureResponse
|
||||
*/
|
||||
public function setMessage($message)
|
||||
{
|
||||
$this->message = $message;
|
||||
|
||||
$this->setData();
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the failure message.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getMessage()
|
||||
{
|
||||
return $this->message;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user