文件操作 - FixtureFileFinder.php
返回文件管理
返回主菜单
删除本文件
文件: /opt/cpanel/ea-wappspector/vendor/rector/rector/src/Testing/Fixture/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()]); } } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件