Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class PathResolverCacheDecorator implements PathResolverInterface |
||
15 | { |
||
16 | /** |
||
17 | * @var array<string, string> |
||
18 | */ |
||
19 | private array $cache; |
||
20 | |||
21 | 2 | public function __construct(private readonly PathResolverInterface $pathResolver) |
|
24 | } |
||
25 | |||
26 | 2 | public function resolve(string $relative): string |
|
35 |