This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Vrt\UtilsBundle\Service; | |
use RuntimeException; | |
use Symfony\Component\DependencyInjection\Container; | |
// AppKernel::initializeContainer() | |
// if ('dev' === $this->environment) { | |
// ContainerServiceId::setContainer($this->container); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Iterator; | |
use ArrayIterator; | |
use Iterator; | |
/** | |
* Takes a set of iterators [iterator1, iterator2, iterator3, ...] | |
* and iterates in an equivalent way to: |
OlderNewer