Total Complexity | 2 |
Total Lines | 42 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | final class Psr6CacheFactory implements CacheFactoryInterface |
||
11 | { |
||
12 | /** @var CacheItemPoolInterface */ |
||
13 | private $psr6Cache; |
||
14 | |||
15 | /** @var int */ |
||
16 | private $ttl; |
||
17 | |||
18 | /** @var bool */ |
||
19 | private $reloadOnMiss; |
||
20 | |||
21 | /** @var string */ |
||
22 | private $prefix; |
||
23 | |||
24 | /** @var string */ |
||
25 | private $separator; |
||
26 | |||
27 | public function __construct( |
||
39 | } |
||
40 | |||
41 | public function getInstance(MoParser $parser, string $locale, string $domain): CacheInterface |
||
55 |