@@ -269,7 +269,7 @@ |
||
| 269 | 269 | } |
| 270 | 270 | |
| 271 | 271 | /** |
| 272 | - * @param array $recipient |
|
| 272 | + * @param Recipient $recipient |
|
| 273 | 273 | * @param string $cek |
| 274 | 274 | * @param array $additionalHeaders |
| 275 | 275 | * |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | /** |
| 106 | - * @param array $children |
|
| 106 | + * @param ASNObject[] $children |
|
| 107 | 107 | * |
| 108 | 108 | * @return array |
| 109 | 109 | */ |
@@ -266,7 +266,7 @@ discard block |
||
| 266 | 266 | } |
| 267 | 267 | |
| 268 | 268 | /** |
| 269 | - * @param array $children |
|
| 269 | + * @param ASNObject[] $children |
|
| 270 | 270 | * |
| 271 | 271 | * @return bool |
| 272 | 272 | */ |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | /** |
| 106 | - * @param array $children |
|
| 106 | + * @param ASNObject[] $children |
|
| 107 | 107 | * |
| 108 | 108 | * @return array |
| 109 | 109 | */ |
@@ -266,7 +266,7 @@ discard block |
||
| 266 | 266 | } |
| 267 | 267 | |
| 268 | 268 | /** |
| 269 | - * @param array $children |
|
| 269 | + * @param ASNObject[] $children |
|
| 270 | 270 | * |
| 271 | 271 | * @return bool |
| 272 | 272 | */ |
@@ -76,6 +76,7 @@ discard block |
||
| 76 | 76 | |
| 77 | 77 | /** |
| 78 | 78 | * @see GmpMath::pow() |
| 79 | + * @param integer $exponent |
|
| 79 | 80 | */ |
| 80 | 81 | public function pow(\GMP $base, $exponent) |
| 81 | 82 | { |
@@ -92,6 +93,7 @@ discard block |
||
| 92 | 93 | |
| 93 | 94 | /** |
| 94 | 95 | * @see GmpMath::rightShift() |
| 96 | + * @param integer $positions |
|
| 95 | 97 | */ |
| 96 | 98 | public function rightShift(\GMP $number, $positions) |
| 97 | 99 | { |
@@ -134,6 +136,7 @@ discard block |
||
| 134 | 136 | |
| 135 | 137 | /** |
| 136 | 138 | * @see GmpMath::decHex() |
| 139 | + * @param string $dec |
|
| 137 | 140 | */ |
| 138 | 141 | public function decHex($dec) |
| 139 | 142 | { |
@@ -259,6 +262,9 @@ discard block |
||
| 259 | 262 | |
| 260 | 263 | /** |
| 261 | 264 | * @see GmpMath::baseConvert() |
| 265 | + * @param string $number |
|
| 266 | + * @param integer $from |
|
| 267 | + * @param integer $to |
|
| 262 | 268 | */ |
| 263 | 269 | public function baseConvert($number, $from, $to) |
| 264 | 270 | { |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | /** |
| 37 | - * @param \GMP $minuend |
|
| 37 | + * @param resource $minuend |
|
| 38 | 38 | * @param \GMP $subtrahend |
| 39 | 39 | * |
| 40 | 40 | * @return \GMP |
@@ -56,8 +56,8 @@ discard block |
||
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | /** |
| 59 | - * @param \GMP $dividend |
|
| 60 | - * @param \GMP $divisor |
|
| 59 | + * @param resource $dividend |
|
| 60 | + * @param resource $divisor |
|
| 61 | 61 | * |
| 62 | 62 | * @return \GMP |
| 63 | 63 | */ |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | } |
| 137 | 137 | |
| 138 | 138 | /** |
| 139 | - * @param array $base |
|
| 139 | + * @param \GMP[] $base |
|
| 140 | 140 | * @param \GMP $exponent |
| 141 | 141 | * @param array $polymod |
| 142 | 142 | * @param \GMP $p |
@@ -180,7 +180,7 @@ discard block |
||
| 180 | 180 | } |
| 181 | 181 | |
| 182 | 182 | /** |
| 183 | - * @param \GMP $a |
|
| 183 | + * @param resource $a |
|
| 184 | 184 | * @param \GMP $p |
| 185 | 185 | * |
| 186 | 186 | * @return \GMP |
@@ -306,7 +306,7 @@ |
||
| 306 | 306 | /** |
| 307 | 307 | * @param $a |
| 308 | 308 | * @param $b |
| 309 | - * @param $cond |
|
| 309 | + * @param integer $cond |
|
| 310 | 310 | */ |
| 311 | 311 | public function cswapValue(&$a, &$b, $cond) |
| 312 | 312 | { |