| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | public function __construct( |
||
| 28 | CacheItemPoolInterface $psr6Cache, |
||
| 29 | int $ttl = 0, |
||
| 30 | bool $reloadOnMiss = true, |
||
| 31 | string $prefix = 'mo_', |
||
| 32 | string $separator = '.' |
||
| 33 | ) { |
||
| 34 | $this->psr6Cache = $psr6Cache; |
||
| 35 | $this->ttl = $ttl; |
||
| 36 | $this->reloadOnMiss = $reloadOnMiss; |
||
| 37 | $this->prefix = $prefix; |
||
| 38 | $this->separator = $separator; |
||
| 39 | } |
||
| 55 |