Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
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; |
||
44 | } |
||
45 | |||
70 |