aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/auth/provider/oauth/oauth.php
diff options
context:
space:
mode:
authorMate Bartus <mate.bartus@gmail.com>2015-06-23 14:31:18 +0200
committerMate Bartus <mate.bartus@gmail.com>2015-06-23 14:31:18 +0200
commit98cb70f5d2e42dafa48413713cc60ddd881c54c6 (patch)
tree55396e10c991fa63c8b7b6604837f76e9f2693dd /phpBB/phpbb/auth/provider/oauth/oauth.php
parent8213f24b352ce2ea714686738fefc70acccf0681 (diff)
downloadforums-98cb70f5d2e42dafa48413713cc60ddd881c54c6.tar
forums-98cb70f5d2e42dafa48413713cc60ddd881c54c6.tar.gz
forums-98cb70f5d2e42dafa48413713cc60ddd881c54c6.tar.bz2
forums-98cb70f5d2e42dafa48413713cc60ddd881c54c6.tar.xz
forums-98cb70f5d2e42dafa48413713cc60ddd881c54c6.zip
[ticket/13961] Move service_collection to di/service_collection namespace
PHPBB3-13961
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 be0fbf5831..612446a2a8 100644
--- a/phpBB/phpbb/auth/provider/oauth/oauth.php
+++ b/phpBB/phpbb/auth/provider/oauth/oauth.php
@@ -72,7 +72,7 @@ class oauth extends \phpbb\auth\provider\base
/**
* All OAuth service providers
*
- * @var \phpbb\di\service_collection Contains \phpbb\auth\provider\oauth\service_interface
+ * @var \phpbb\di\service_collection\service_collection Contains \phpbb\auth\provider\oauth\service_interface
*/
protected $service_providers;
@@ -121,13 +121,13 @@ class oauth extends \phpbb\auth\provider\base
* @param \phpbb\user $user
* @param string $auth_provider_oauth_token_storage_table
* @param string $auth_provider_oauth_token_account_assoc
- * @param \phpbb\di\service_collection $service_providers Contains \phpbb\auth\provider\oauth\service_interface
+ * @param \phpbb\di\service_collection\service_collection $service_providers Contains \phpbb\auth\provider\oauth\service_interface
* @param string $users_table
* @param \Symfony\Component\DependencyInjection\ContainerInterface $phpbb_container DI container
* @param string $phpbb_root_path
* @param string $php_ext
*/
- public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\config\config $config, \phpbb\passwords\manager $passwords_manager, \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, \Symfony\Component\DependencyInjection\ContainerInterface $phpbb_container, $phpbb_root_path, $php_ext)
+ public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\config\config $config, \phpbb\passwords\manager $passwords_manager, \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_collection $service_providers, $users_table, \Symfony\Component\DependencyInjection\ContainerInterface $phpbb_container, $phpbb_root_path, $php_ext)
{
$this->db = $db;
$this->config = $config;