@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | * ?> |
38 | 38 | * </code> |
39 | 39 | * |
40 | - * @param mixed $value base-10 number or base-$base number if $base set. |
|
40 | + * @param integer $value base-10 number or base-$base number if $base set. |
|
41 | 41 | * @param int $base |
42 | 42 | */ |
43 | 43 | private function __construct($value = 0, $base = 10) |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | } |
66 | 66 | |
67 | 67 | /** |
68 | - * @param \GMP $value |
|
68 | + * @param resource $value |
|
69 | 69 | * |
70 | 70 | * @return \Jose\Util\BigInteger |
71 | 71 | */ |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | * </code> |
240 | 240 | * @param \Jose\Util\BigInteger $y |
241 | 241 | * |
242 | - * @return \Jose\Util\BigInteger[] |
|
242 | + * @return BigInteger[] |
|
243 | 243 | * |
244 | 244 | */ |
245 | 245 | public function divide(BigInteger $y) |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | * @param \Jose\Util\BigInteger $e |
273 | 273 | * @param \Jose\Util\BigInteger $n |
274 | 274 | * |
275 | - * @return \Jose\Util\BigInteger|bool |
|
275 | + * @return BigInteger |
|
276 | 276 | * |
277 | 277 | * and although the approach involving repeated squaring does vastly better, it, too, is impractical |
278 | 278 | * for our purposes. The reason being that division - by far the most complicated and time-consuming |