| Total Complexity | 3 |
| Total Lines | 62 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | abstract class FileSystemTestCase extends TestCase |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | protected $cwd; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var string |
||
| 33 | */ |
||
| 34 | protected $tmp; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritdoc} |
||
| 38 | */ |
||
| 39 | protected function setUp(): void |
||
| 51 | } |
||
| 52 | |||
| 53 | /** |
||
| 54 | * {@inheritdoc} |
||
| 55 | */ |
||
| 56 | protected function tearDown(): void |
||
| 63 | } |
||
| 64 | |||
| 65 | /** |
||
| 66 | * @param string[] $files |
||
| 67 | * |
||
| 68 | * @return string[] File real paths relative to the current temporary directory |
||
| 69 | */ |
||
| 70 | final protected function normalizePaths(array $files): array |
||
| 88 |