| 1 | <?php |
||
| 7 | class EnvelopeEncryptingPoolDecorator extends EncryptingPoolDecorator |
||
| 8 | { |
||
| 9 | /** @var resource|string */ |
||
| 10 | private $certificate; |
||
| 11 | /** @var string */ |
||
| 12 | private $key; |
||
| 13 | /** @var null|string */ |
||
| 14 | private $passPhrase; |
||
| 15 | /** @var string */ |
||
| 16 | private $cipher; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param CacheItemPoolInterface $decorated |
||
| 20 | * @param string|resource $certificate |
||
| 21 | * @param string $key |
||
| 22 | * @param string|null $passPhrase |
||
| 23 | * @param string $cipher |
||
| 24 | * |
||
| 25 | * @throws \Psr\Cache\InvalidArgumentException |
||
| 26 | */ |
||
| 27 | 441 | public function __construct( |
|
| 40 | |||
| 41 | 135 | protected function decorate(CacheItemInterface $inner) |
|
| 51 | } |
||
| 52 |