This commit is contained in:
Alex Bilbie
2014-08-06 09:53:47 +01:00
parent 130d42c85e
commit 522c7478c7
7 changed files with 109 additions and 68 deletions

View File

@@ -23,6 +23,12 @@ class OAuthException extends \Exception
*/
public $httpStatusCode = 400;
/**
* If true the server should redirect back to the client
* @var boolean
*/
public $serverShouldRedirect = false;
/**
* The exception type
*/
@@ -36,6 +42,15 @@ class OAuthException extends \Exception
parent::__construct($msg);
}
/**
* Should the server redirect back to the client?
* @return bool
*/
public function shouldRedirect()
{
return $this->serverShouldRedirect;
}
/**
* Get all headers that have to be send with the error response
* @return array Array with header values