Total Complexity | 5 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | final class SymfonyPatcher |
||
22 | { |
||
23 | private const PATHS = [ |
||
24 | 'src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php', |
||
25 | 'symfony/dependency-injection/Dumper/PhpDumper.php', |
||
26 | ]; |
||
27 | 21 | ||
28 | public function __invoke(string $filePath, string $prefix, string $contents): string |
||
41 | ); |
||
42 | } |
||
43 | 21 | ||
44 | private static function isSupportedFile(string $filePath): bool |
||
55 |