Total Complexity | 6 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | final class PathFinder implements PathFinderInterface |
||
13 | { |
||
14 | /** @var array<string,array<int,string>> */ |
||
15 | private static array $cache = []; |
||
16 | |||
17 | /** |
||
18 | * @return string[] |
||
19 | */ |
||
20 | #[Override] |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * Note: The GLOB_BRACE flag is not available on some non-GNU systems, like Solaris or Alpine Linux. |
||
38 | * |
||
39 | * @see https://www.php.net/manual/en/function.glob.php |
||
40 | */ |
||
41 | private function ensureGlobBraceIsDefined(): void |
||
48 |