🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 06:39:44 | PHP 8.1.34
📂
/ (Root)
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
src
/
Testing
/
Fixture
📍 /opt/cpanel/ea-wappspector/vendor/rector/rector/src/Testing/Fixture
🔄 Refresh
✏️
Editing: FixtureFileFinder.php
Read Only
<?php declare (strict_types=1); namespace Rector\Testing\Fixture; use Iterator; use RectorPrefix202411\Symfony\Component\Finder\Finder; final class FixtureFileFinder { /** * @api used in tests * @return Iterator<array<int, string>> */ public static function yieldDirectory(string $directory, string $suffix = '*.php.inc') : Iterator { $finder = (new Finder())->in($directory)->files()->name($suffix)->sortByName(); foreach ($finder as $fileInfo) { (yield [$fileInfo->getRealPath()]); } } }
💾 Save Changes
❌ Cancel