@@ -27,7 +27,7 @@ |
||
27 | 27 | /** |
28 | 28 | * Constructor |
29 | 29 | * |
30 | - * @param string $key Content encryption key |
|
30 | + * @param string $cek |
|
31 | 31 | */ |
32 | 32 | public function __construct($cek) { |
33 | 33 | $this->_cek = $cek; |
@@ -13,7 +13,6 @@ |
||
13 | 13 | /** |
14 | 14 | * Constructor |
15 | 15 | * |
16 | - * @param string $algo Key ID |
|
17 | 16 | */ |
18 | 17 | public function __construct($id) { |
19 | 18 | parent::__construct(self::PARAM_KEY_ID, $id); |
@@ -54,6 +54,7 @@ |
||
54 | 54 | * Constructor |
55 | 55 | * |
56 | 56 | * @param JWKParameter ...$params |
57 | + * @param JWKParameter[] $params |
|
57 | 58 | * @throws \UnexpectedValueException If missing required parameter |
58 | 59 | */ |
59 | 60 | public function __construct(JWKParameter ...$params) { |
@@ -42,6 +42,7 @@ |
||
42 | 42 | * Constructor |
43 | 43 | * |
44 | 44 | * @param JWKParameter ...$params |
45 | + * @param JWKParameter[] $params |
|
45 | 46 | * @throws \UnexpectedValueException If missing required parameter |
46 | 47 | */ |
47 | 48 | public function __construct(JWKParameter ...$params) { |
@@ -35,6 +35,7 @@ |
||
35 | 35 | * Constructor |
36 | 36 | * |
37 | 37 | * @param JWKParameter ...$params |
38 | + * @param JWKParameter[] $params |
|
38 | 39 | * @throws \UnexpectedValueException If missing required parameter |
39 | 40 | */ |
40 | 41 | public function __construct(JWKParameter ...$params) { |
@@ -47,9 +47,9 @@ |
||
47 | 47 | /** |
48 | 48 | * Constructor |
49 | 49 | * |
50 | - * @param Header $header JWS Protected Header |
|
51 | 50 | * @param string $payload JWS Payload |
52 | 51 | * @param string $signature JWS Signature |
52 | + * @param string $signature_input |
|
53 | 53 | */ |
54 | 54 | protected function __construct(Header $protected_header, $payload, |
55 | 55 | $signature_input, $signature) { |
@@ -13,7 +13,7 @@ |
||
13 | 13 | /** |
14 | 14 | * Constructor |
15 | 15 | * |
16 | - * @param string $type |
|
16 | + * @param string $algo |
|
17 | 17 | */ |
18 | 18 | public function __construct($algo) { |
19 | 19 | parent::__construct(self::PARAM_COMPRESSION_ALGORITHM, (string) $algo); |