aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/di
diff options
context:
space:
mode:
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()
*/