aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/auth/provider/oauth/oauth.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2013-09-16 03:22:13 +0200
committerNils Adermann <naderman@naderman.de>2013-09-16 03:22:13 +0200
commit1fa673bdedcc46fda69f62b6cb967bd33812f50a (patch)
tree8b536534bd4bdc875b70e76290e5c1a9e3ab9bb0 /phpBB/phpbb/auth/provider/oauth/oauth.php
parent09cfa01d589ead86cf811e27b52167539e0478ec (diff)
downloadforums-1fa673bdedcc46fda69f62b6cb967bd33812f50a.tar
forums-1fa673bdedcc46fda69f62b6cb967bd33812f50a.tar.gz
forums-1fa673bdedcc46fda69f62b6cb967bd33812f50a.tar.bz2
forums-1fa673bdedcc46fda69f62b6cb967bd33812f50a.tar.xz
forums-1fa673bdedcc46fda69f62b6cb967bd33812f50a.zip
[ticket/11700] Fix authentication acp after develop merge
PHPBB3-11700
Diffstat (limited to 'phpBB/phpbb/auth/provider/oauth/oauth.php')
-rw-r--r--phpBB/phpbb/auth/provider/oauth/oauth.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/auth/provider/oauth/oauth.php b/phpBB/phpbb/auth/provider/oauth/oauth.php
index e92462b344..de81ac0d04 100644
--- a/phpBB/phpbb/auth/provider/oauth/oauth.php
+++ b/phpBB/phpbb/auth/provider/oauth/oauth.php
@@ -30,7 +30,7 @@ class oauth extends \phpbb\auth\provider\base
/**
* Database driver
*
- * @var \phpbb\db\driver
+ * @var \phpbb\db\driver\driver
*/
protected $db;
@@ -107,7 +107,7 @@ class oauth extends \phpbb\auth\provider\base
/**
* OAuth Authentication Constructor
*
- * @param \phpbb\db\driver $db
+ * @param \phpbb\db\driver\driver $db
* @param \phpbb\config\config $config
* @param \phpbb\request\request_interface $request
* @param \phpbb\user $user
@@ -118,7 +118,7 @@ class oauth extends \phpbb\auth\provider\base
* @param string $phpbb_root_path
* @param string $php_ext
*/
- public function __construct(\phpbb\db\driver $db, \phpbb\config\config $config, \phpbb\request\request_interface $request, \phpbb\user $user, $auth_provider_oauth_token_storage_table, $auth_provider_oauth_token_account_assoc, \phpbb\di\service_collection $service_providers, $users_table, $phpbb_root_path, $php_ext)
+ public function __construct(\phpbb\db\driver\driver $db, \phpbb\config\config $config, \phpbb\request\request_interface $request, \phpbb\user $user, $auth_provider_oauth_token_storage_table, $auth_provider_oauth_token_account_assoc, \phpbb\di\service_collection $service_providers, $users_table, $phpbb_root_path, $php_ext)
{
$this->db = $db;
$this->config = $config;