aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/profilefields
diff options
context:
space:
mode:
authorMate Bartus <mate.bartus@gmail.com>2015-06-26 01:02:04 +0200
committerMate Bartus <mate.bartus@gmail.com>2015-06-26 01:04:36 +0200
commitb09293d5ff38633d506083cffc0a9dd2c98c15c4 (patch)
tree33a330239989bcd84eb58d3bdf90b046a1788bac /phpBB/phpbb/profilefields
parent050de400d741d48403fb32485933d1fe161e89b0 (diff)
downloadforums-b09293d5ff38633d506083cffc0a9dd2c98c15c4.tar
forums-b09293d5ff38633d506083cffc0a9dd2c98c15c4.tar.gz
forums-b09293d5ff38633d506083cffc0a9dd2c98c15c4.tar.bz2
forums-b09293d5ff38633d506083cffc0a9dd2c98c15c4.tar.xz
forums-b09293d5ff38633d506083cffc0a9dd2c98c15c4.zip
[ticket/13961] Move back service_collections under original namespace
PHPBB3-13961
Diffstat (limited to 'phpBB/phpbb/profilefields')
-rw-r--r--phpBB/phpbb/profilefields/manager.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/profilefields/manager.php b/phpBB/phpbb/profilefields/manager.php
index 802629a10e..4ad3214ae4 100644
--- a/phpBB/phpbb/profilefields/manager.php
+++ b/phpBB/phpbb/profilefields/manager.php
@@ -50,7 +50,7 @@ class manager
/**
* Service Collection object
- * @var \phpbb\di\service_collection\service_collection
+ * @var \phpbb\di\service_collection
*/
protected $type_collection;
@@ -76,13 +76,13 @@ class manager
* @param \phpbb\event\dispatcher_interface $dispatcher Event dispatcher object
* @param \phpbb\request\request $request Request object
* @param \phpbb\template\template $template Template object
- * @param \phpbb\di\service_collection\service_collection $type_collection
+ * @param \phpbb\di\service_collection $type_collection
* @param \phpbb\user $user User object
* @param string $fields_table
* @param string $fields_language_table
* @param string $fields_data_table
*/
- public function __construct(\phpbb\auth\auth $auth, \phpbb\db\driver\driver_interface $db, \phpbb\event\dispatcher_interface $dispatcher, \phpbb\request\request $request, \phpbb\template\template $template, \phpbb\di\service_collection\service_collection $type_collection, \phpbb\user $user, $fields_table, $fields_language_table, $fields_data_table)
+ public function __construct(\phpbb\auth\auth $auth, \phpbb\db\driver\driver_interface $db, \phpbb\event\dispatcher_interface $dispatcher, \phpbb\request\request $request, \phpbb\template\template $template, \phpbb\di\service_collection $type_collection, \phpbb\user $user, $fields_table, $fields_language_table, $fields_data_table)
{
$this->auth = $auth;
$this->db = $db;