%PDF- %PDF-
Direktori : /var/www/html/conference/vendor/phpunit/phpunit/tests/_files/ |
Current File : /var/www/html/conference/vendor/phpunit/phpunit/tests/_files/WrapperIteratorAggregate.php |
<?php class WrapperIteratorAggregate implements IteratorAggregate { /** * @var array|\Traversable */ private $baseCollection; public function __construct($baseCollection) { assert(is_array($baseCollection) || $baseCollection instanceof Traversable); $this->baseCollection = $baseCollection; } public function getIterator() { foreach ($this->baseCollection as $k => $v) { yield $k => $v; } } }