From 41d8e014823ed3750208c7fdcf6e3812c4d62f5a Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Fri, 6 Jul 2012 17:48:20 +0100 Subject: [PATCH] NULL should be null --- src/oauth2server/Server.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/oauth2server/Server.php b/src/oauth2server/Server.php index 6d63a252..42604010 100644 --- a/src/oauth2server/Server.php +++ b/src/oauth2server/Server.php @@ -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();