1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 19:24:01 +02:00

[ticket/13961] Move back service_collections under original namespace

PHPBB3-13961
This commit is contained in:
Mate Bartus
2015-06-26 01:02:04 +02:00
parent 050de400d7
commit b09293d5ff
25 changed files with 38 additions and 38 deletions

View File

@@ -11,7 +11,7 @@
*
*/
namespace phpbb\di\service_collection;
namespace phpbb\di;
use Symfony\Component\DependencyInjection\ContainerInterface;

View File

@@ -11,7 +11,7 @@
*
*/
namespace phpbb\di\service_collection;
namespace phpbb\di;
use Symfony\Component\DependencyInjection\ContainerInterface;

View File

@@ -11,7 +11,7 @@
*
*/
namespace phpbb\di\service_collection;
namespace phpbb\di;
/**
* Iterator which loads the services when they are requested
@@ -19,14 +19,14 @@ namespace phpbb\di\service_collection;
class service_collection_iterator extends \ArrayIterator
{
/**
* @var \phpbb\di\service_collection\service_collection
* @var \phpbb\di\service_collection
*/
protected $collection;
/**
* Construct an ArrayIterator for service_collection
*
* @param \phpbb\di\service_collection\service_collection $collection The collection to iterate over
* @param \phpbb\di\service_collection $collection The collection to iterate over
* @param int $flags Flags to control the behaviour of the ArrayObject object.
* @see ArrayObject::setFlags()
*/