Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | final class CustomServicesCache extends AbstractFileCache |
||
10 | { |
||
11 | public const CACHE_FILENAME = '.gacela-custom-services.cache'; |
||
12 | |||
13 | /** |
||
14 | * @internal |
||
15 | * |
||
16 | * @return array<string,string> |
||
17 | */ |
||
18 | public static function getAll(): array |
||
19 | { |
||
20 | return self::$cache; |
||
21 | } |
||
22 | |||
23 | protected function getCacheFilename(): string |
||
26 | } |
||
27 | } |
||
28 |