Skip to content
Snippets Groups Projects
Commit 4982cf84 authored by Sonia Zorba's avatar Sonia Zorba Committed by zonia3000
Browse files

Bugfix class usage

parent c295f8e7
No related branches found
No related tags found
No related merge requests found
...@@ -206,7 +206,7 @@ class MySQLOAuth2ClientDAO extends BaseMySQLDAO implements OAuth2ClientDAO { ...@@ -206,7 +206,7 @@ class MySQLOAuth2ClientDAO extends BaseMySQLDAO implements OAuth2ClientDAO {
return null; return null;
} }
if (count($result) > 1) { if (count($result) > 1) {
throw new Exception("Found multiple clients associated to the same client id!"); throw new \Exception("Found multiple clients associated to the same client id!");
} }
$row = $result[0]; $row = $result[0];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment