| Total Complexity | 2 | 
| Total Lines | 19 | 
| Duplicated Lines | 0 % | 
| 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 | public function __construct(int $ttl = 0, bool $reloadOnMiss = true, string $prefix = 'mo_')  | 
            ||
| 23 | }  | 
            ||
| 24 | |||
| 25 | public function getInstance(MoParser $parser, string $locale, string $domain): CacheInterface  | 
            ||
| 30 |