mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-12-22 21:19:46 +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
|
class Server
|
||||||
{
|
{
|
||||||
private $db = NULL;
|
private $db = null;
|
||||||
|
|
||||||
private $config = array(
|
private $config = array(
|
||||||
'response_types' => array(
|
'response_types' => array(
|
||||||
@ -43,7 +43,7 @@ class Server
|
|||||||
$this->db = $db;
|
$this->db = $db;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function checkAuthoriseParams(array $authParams = NULL)
|
public function checkAuthoriseParams(array $authParams = null)
|
||||||
{
|
{
|
||||||
$params = array();
|
$params = array();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user