@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | /** |
26 | 26 | * Converts base-10 and binary strings (base-256) to BigIntegers. |
27 | 27 | * |
28 | - * @param mixed $value base-10 number or base-$base number if $base set. |
|
28 | + * @param integer $value base-10 number or base-$base number if $base set. |
|
29 | 29 | * @param int $base |
30 | 30 | */ |
31 | 31 | private function __construct($value = 0, $base = 10) |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | * |
162 | 162 | * @param \Jose\Util\BigInteger $y |
163 | 163 | * |
164 | - * @return \Jose\Util\BigInteger[] |
|
164 | + * @return BigInteger[] |
|
165 | 165 | * |
166 | 166 | */ |
167 | 167 | public function divide(BigInteger $y) |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | * @param \Jose\Util\BigInteger $e |
182 | 182 | * @param \Jose\Util\BigInteger $n |
183 | 183 | * |
184 | - * @return \Jose\Util\BigInteger|bool |
|
184 | + * @return BigInteger |
|
185 | 185 | */ |
186 | 186 | public function modPow(BigInteger $e, BigInteger $n) |
187 | 187 | { |