aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/di
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/di
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/di')
-rw-r--r--phpBB/phpbb/di/service_collection/service_collection.php (renamed from phpBB/phpbb/di/service_collection.php)2
-rw-r--r--phpBB/phpbb/di/service_collection/service_collection_iterator.php (renamed from phpBB/phpbb/di/service_collection_iterator.php)6
2 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/phpbb/di/service_collection.php b/phpBB/phpbb/di/service_collection/service_collection.php
index 82ca9bf679..8085128fed 100644
--- a/phpBB/phpbb/di/service_collection.php
+++ b/phpBB/phpbb/di/service_collection/service_collection.php
@@ -11,7 +11,7 @@
*
*/
-namespace phpbb\di;
+namespace phpbb\di\service_collection;
use Symfony\Component\DependencyInjection\ContainerInterface;
diff --git a/phpBB/phpbb/di/service_collection_iterator.php b/phpBB/phpbb/di/service_collection/service_collection_iterator.php
index 0d031ab52d..76e22b048e 100644
--- a/phpBB/phpbb/di/service_collection_iterator.php
+++ b/phpBB/phpbb/di/service_collection/service_collection_iterator.php
@@ -11,7 +11,7 @@
*
*/
-namespace phpbb\di;
+namespace phpbb\di\service_collection;
/**
* Iterator which loads the services when they are requested
@@ -19,14 +19,14 @@ namespace phpbb\di;
class service_collection_iterator extends \ArrayIterator
{
/**
- * @var \phpbb\di\service_collection
+ * @var \phpbb\di\service_collection\service_collection
*/
protected $collection;
/**
* Construct an ArrayIterator for service_collection
*
- * @param \phpbb\di\service_collection $collection The collection to iterate over
+ * @param \phpbb\di\service_collection\service_collection $collection The collection to iterate over
* @param int $flags Flags to control the behaviour of the ArrayObject object.
* @see ArrayObject::setFlags()
*/