Sha256: d6eb67fcbbcad7e2be574f9590cb36d27a68cb3fe3307c958a926660423f163d
Contents?: true
Size: 583 Bytes
Versions: 40
Compression:
Stored size: 583 Bytes
Contents
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Helper; /** * @internal */ class TableRows implements \IteratorAggregate { private $generator; public function __construct(callable $generator) { $this->generator = $generator; } public function getIterator() { $g = $this->generator; return $g(); } }
Version data entries
40 entries across 40 versions & 1 rubygems