Total Complexity | 2 |
Total Lines | 9 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | final class ApcuCacheFactory implements CacheFactoryInterface |
||
10 | { |
||
11 | public function __construct(private int $ttl = 0, private bool $reloadOnMiss = true, private string $prefix = 'mo_') |
||
13 | } |
||
14 | |||
15 | public function getInstance(MoParser $parser, string $locale, string $domain): CacheInterface |
||
20 |