Update v1.0.6

This commit is contained in:
Bhanu Slathia
2016-02-16 23:24:52 +05:30
parent c710c20b9e
commit b1f62846ab
7662 changed files with 1361647 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace Tymon\JWTAuth\Exceptions;
class InvalidClaimException extends JWTException
{
/**
* @var integer
*/
protected $statusCode = 400;
}

View File

@@ -0,0 +1,40 @@
<?php
namespace Tymon\JWTAuth\Exceptions;
class JWTException extends \Exception
{
/**
* @var integer
*/
protected $statusCode = 500;
/**
* @param string $message
* @param integer $statusCode
*/
public function __construct($message = 'An error occurred', $statusCode = null)
{
parent::__construct($message);
if (! is_null($statusCode)) {
$this->setStatusCode($statusCode);
}
}
/**
* @param integer $statusCode
*/
public function setStatusCode($statusCode)
{
$this->statusCode = $statusCode;
}
/**
* @return integer the status code
*/
public function getStatusCode()
{
return $this->statusCode;
}
}

View File

@@ -0,0 +1,11 @@
<?php
namespace Tymon\JWTAuth\Exceptions;
class PayloadException extends JWTException
{
/**
* @var integer
*/
protected $statusCode = 500;
}

View File

@@ -0,0 +1,11 @@
<?php
namespace Tymon\JWTAuth\Exceptions;
class TokenBlacklistedException extends TokenInvalidException
{
/**
* @var integer
*/
protected $statusCode = 401;
}

View File

@@ -0,0 +1,11 @@
<?php
namespace Tymon\JWTAuth\Exceptions;
class TokenExpiredException extends JWTException
{
/**
* @var integer
*/
protected $statusCode = 401;
}

View File

@@ -0,0 +1,11 @@
<?php
namespace Tymon\JWTAuth\Exceptions;
class TokenInvalidException extends JWTException
{
/**
* @var integer
*/
protected $statusCode = 400;
}