mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-12-22 13:09:44 +05:30
NULL should be null
This commit is contained in:
parent
213f2a4ad8
commit
41d8e01482
@ -10,7 +10,7 @@ class OAuthServerException extends Exception {}
|
||||
|
||||
class Server
|
||||
{
|
||||
private $db = NULL;
|
||||
private $db = null;
|
||||
|
||||
private $config = array(
|
||||
'response_types' => array(
|
||||
@ -43,7 +43,7 @@ class Server
|
||||
$this->db = $db;
|
||||
}
|
||||
|
||||
public function checkAuthoriseParams(array $authParams = NULL)
|
||||
public function checkAuthoriseParams(array $authParams = null)
|
||||
{
|
||||
$params = array();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user