Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
37 | * @param array $recipient_unprotected_header |
||
38 | */ |
||
39 | public function __construct(JWKInterface $recipient_public_key, JWKInterface $sender_private_key = null, array $recipient_unprotected_header = []) |
||
40 | { |
||
41 | $this->sender_private_key = $sender_private_key; |
||
42 | $this->recipient_public_key = $recipient_public_key; |
||
43 | $this->recipient_unprotected_header = $recipient_unprotected_header; |
||
70 |