NULL should be null

This commit is contained in:
Alex Bilbie 2012-07-06 17:48:20 +01:00
parent 213f2a4ad8
commit 41d8e01482

View File

@ -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();