1 | <?php |
||
8 | class PoolDecorator extends BasePoolDecorator |
||
9 | { |
||
10 | /** @var string */ |
||
11 | private $password; |
||
12 | /** @var string */ |
||
13 | private $cipher; |
||
14 | |||
15 | /** |
||
16 | * @param CacheItemPoolInterface $decorated |
||
17 | * @param string $password |
||
18 | * @param string $cipher |
||
19 | */ |
||
20 | 441 | public function __construct( |
|
29 | |||
30 | 135 | protected function decorate(CacheItemInterface $item) |
|
38 | } |
||
39 |