Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | 441 | public function __construct( |
|
29 | CacheItemPoolInterface $decorated, |
||
30 | $certificate, |
||
31 | $key, |
||
32 | $passPhrase = null, |
||
33 | $cipher = 'aes-256-cbc' |
||
34 | ) { |
||
35 | 441 | parent::__construct($decorated); |
|
36 | 441 | $this->cipher = $cipher; |
|
37 | 441 | $this->certificate = $certificate; |
|
38 | 441 | $this->key = $key; |
|
39 | 441 | $this->passPhrase = $passPhrase; |
|
40 | 441 | } |
|
41 | |||
53 |