Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 85.71% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | final class ApcuCacheFactory implements CacheFactoryInterface |
||
10 | { |
||
11 | /** @var int */ |
||
12 | private $ttl; |
||
13 | /** @var bool */ |
||
14 | private $reloadOnMiss; |
||
15 | /** @var string */ |
||
16 | private $prefix; |
||
17 | |||
18 | 8 | public function __construct(int $ttl = 0, bool $reloadOnMiss = true, string $prefix = 'mo_') |
|
23 | } |
||
24 | |||
25 | 8 | public function getInstance(MoParser $parser, string $locale, string $domain): CacheInterface |
|
30 |