mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-02 00:43:11 +05:30
Class variable docblocks
This commit is contained in:
parent
4f343cbe42
commit
df9c762b2e
@ -10,8 +10,16 @@ class OAuthServerException extends \Exception {}
|
|||||||
|
|
||||||
class Server
|
class Server
|
||||||
{
|
{
|
||||||
private $db = null;
|
/**
|
||||||
|
* Reference to the database abstractor
|
||||||
|
* @var object
|
||||||
|
*/
|
||||||
|
private $db;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Server configuration
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
private $config = array(
|
private $config = array(
|
||||||
'scope_delimeter' => ',',
|
'scope_delimeter' => ',',
|
||||||
'access_token_ttl' => null
|
'access_token_ttl' => null
|
||||||
@ -32,6 +40,11 @@ class Server
|
|||||||
private $grant_types = array(
|
private $grant_types = array(
|
||||||
'authorization_code'
|
'authorization_code'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exception error codes
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
public $exceptionCodes = array(
|
public $exceptionCodes = array(
|
||||||
0 => 'invalid_request',
|
0 => 'invalid_request',
|
||||||
1 => 'unauthorized_client',
|
1 => 'unauthorized_client',
|
||||||
@ -45,7 +58,14 @@ class Server
|
|||||||
9 => 'invalid_grant'
|
9 => 'invalid_grant'
|
||||||
);
|
);
|
||||||
|
|
||||||
protected $errors = array(
|
/**
|
||||||
|
* Error codes.
|
||||||
|
*
|
||||||
|
* To provide i8ln errors just overwrite the keys
|
||||||
|
*
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
public $errors = array(
|
||||||
'invalid_request' => 'The request is missing a required parameter,
|
'invalid_request' => 'The request is missing a required parameter,
|
||||||
includes an invalid parameter value, includes a parameter more than
|
includes an invalid parameter value, includes a parameter more than
|
||||||
once, or is otherwise malformed. Check the "%s" parameter.',
|
once, or is otherwise malformed. Check the "%s" parameter.',
|
||||||
|
Loading…
Reference in New Issue
Block a user