Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
php /
Symfony /
Component /
Finder /
Iterator /
Delete
Unzip
Name
Size
Permission
Date
Action
CustomFilterIterator.php
1.53
KB
-rw-r--r--
2026-05-27 08:15
DateRangeFilterIterator.php
1.41
KB
-rw-r--r--
2026-05-27 08:15
DepthRangeFilterIterator.php
1.39
KB
-rw-r--r--
2026-05-27 08:15
ExcludeDirectoryFilterIterator.php
2.61
KB
-rw-r--r--
2026-05-27 08:15
FileTypeFilterIterator.php
1.36
KB
-rw-r--r--
2026-05-27 08:15
FilecontentFilterIterator.php
1.41
KB
-rw-r--r--
2026-05-27 08:15
FilenameFilterIterator.php
1.15
KB
-rw-r--r--
2026-05-27 08:15
LazyIterator.php
672
B
-rw-r--r--
2026-05-27 08:15
MultiplePcreFilterIterator.php
3.17
KB
-rw-r--r--
2026-05-27 08:15
PathFilterIterator.php
1.42
KB
-rw-r--r--
2026-05-27 08:15
RecursiveDirectoryIterator.php
4.31
KB
-rw-r--r--
2026-05-27 08:15
SizeRangeFilterIterator.php
1.37
KB
-rw-r--r--
2026-05-27 08:15
SortableIterator.php
3.82
KB
-rw-r--r--
2026-05-27 08:15
VcsIgnoredFilterIterator.php
3.91
KB
-rw-r--r--
2026-05-27 08:15
Save
Rename
<?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\Finder\Iterator; /** * @author Jérémy Derussé <jeremy@derusse.com> * * @internal */ class LazyIterator implements \IteratorAggregate { private $iteratorFactory; public function __construct(callable $iteratorFactory) { $this->iteratorFactory = $iteratorFactory; } public function getIterator(): \Traversable { yield from ($this->iteratorFactory)(); } }