File Manager Lite
Dir:
/home/u540325668/domains/telegroupstall.com/public_html/vendor/symfony/console/Helper
Upload
[..]
Dumper.php (1.98 KB)
Edit
Rename
Del
Helper.php (3.67 KB)
Edit
Rename
Del
HelperSet.php (2.37 KB)
Edit
Rename
Del
ProgressBar.php (17.44 KB)
Edit
Rename
Del
ProgressIndicator.php (7.61 KB)
Edit
Rename
Del
Table.php (26.6 KB)
Edit
Rename
Del
TableRows.php (597 B)
Edit
Rename
Del
TableSeparator.php (531 B)
Edit
Rename
Del
Edit: TableRows.php
<?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(): \Traversable { $g = $this->generator; return $g(); } }
Simpan