opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
src
/
Testing
/
Fixture
➕ New
📤 Upload
✎ Editing:
FixtureFileFinder.php
← Back
<?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
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel