| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 24 | 2 | public function __construct( |
|
| 25 | int $capacity, |
||
| 26 | float $rate, |
||
| 27 | SerializerInterface $serializer, |
||
| 28 | \Memcached $memcached, |
||
| 29 | int $ttl = 0, |
||
| 30 | string $prefix = '' |
||
| 31 | ) { |
||
| 32 | 2 | parent::__construct($capacity, $rate, $serializer); |
|
| 33 | 2 | $this->memcached = $memcached; |
|
| 34 | 2 | $this->ttl = $ttl; |
|
| 35 | 2 | $this->prefix = $prefix; |
|
| 36 | 2 | } |
|
| 50 |