diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-06-14 15:00:35 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-06-14 15:00:35 +0200 |
commit | 87a13a8c77adbdb72ab686ebd5b26e2e9f961140 (patch) | |
tree | 84bb5d0145dc65cf78747df66407ce8d01868d11 /phpBB/phpbb/di/service_collection.php | |
parent | 88987306de00636dfadc7a4dad08048226eeaa59 (diff) | |
download | forums-87a13a8c77adbdb72ab686ebd5b26e2e9f961140.tar forums-87a13a8c77adbdb72ab686ebd5b26e2e9f961140.tar.gz forums-87a13a8c77adbdb72ab686ebd5b26e2e9f961140.tar.bz2 forums-87a13a8c77adbdb72ab686ebd5b26e2e9f961140.tar.xz forums-87a13a8c77adbdb72ab686ebd5b26e2e9f961140.zip |
[ticket/12575] Pass service_collection instead of ContainerInterface.
PHPBB3-12575
Diffstat (limited to 'phpBB/phpbb/di/service_collection.php')
-rw-r--r-- | phpBB/phpbb/di/service_collection.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/di/service_collection.php b/phpBB/phpbb/di/service_collection.php index a8eeeab8bb..4d0cb64114 100644 --- a/phpBB/phpbb/di/service_collection.php +++ b/phpBB/phpbb/di/service_collection.php @@ -40,7 +40,7 @@ class service_collection extends \ArrayObject */ public function getIterator() { - return new service_collection_iterator($this->container, $this); + return new service_collection_iterator($this); } // Because of a PHP issue we have to redefine offsetExists |