Removed the type hinting otherwise it tries to extend OAuth2\object which doesn't exist

This commit is contained in:
Alex Bilbie 2012-07-11 17:04:00 +01:00
parent 8b7b70f432
commit 813b19cb7a

View File

@ -79,7 +79,7 @@ class Server
* @param object $db A class that implements OAuth2ServerDatabase
* @return void
*/
public function registerDbAbstractor(object $db)
public function registerDbAbstractor($db)
{
$this->db = $db;
}