golden hour
/opt/cpanel/ea-wappspector/vendor/rector/rector/src/Testing/Fixture
⬆️ Go Up
Upload
File/Folder
Size
Actions
FixtureFileFinder.php
559 B
Del
OK
FixtureFileUpdater.php
870 B
Del
OK
FixtureSplitter.php
914 B
Del
OK
FixtureTempFileDumper.php
734 B
Del
OK
Edit: FixtureFileFinder.php
<?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