Failed Conditions
Push — PHPSecLib_Rid ( 2881a4...c6c82d )
by Florent
04:30
created
src/Util/BigInteger.php 1 patch
Doc Comments   +11 added lines, -10 removed lines patch added patch discarded remove patch
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
      * ?>
296 296
      * </code>
297 297
      *
298
-     * @param \Jose\Util\Integer $y
298
+     * @param BigInteger $y
299 299
      *
300 300
      * @return \Jose\Util\BigInteger
301 301
      *
@@ -323,7 +323,7 @@  discard block
 block discarded – undo
323 323
      * ?>
324 324
      * </code>
325 325
      *
326
-     * @param \Jose\Util\Integer $y
326
+     * @param BigInteger $y
327 327
      *
328 328
      * @return \Jose\Util\BigInteger
329 329
      *
@@ -351,7 +351,7 @@  discard block
 block discarded – undo
351 351
      * ?>
352 352
      * </code>
353 353
      *
354
-     * @param \Jose\Util\Integer $x
354
+     * @param BigInteger $x
355 355
      *
356 356
      * @return \Jose\Util\BigInteger
357 357
      */
@@ -385,9 +385,9 @@  discard block
 block discarded – undo
385 385
      * ?>
386 386
      * </code>
387 387
      *
388
-     * @param \Jose\Util\Integer $y
388
+     * @param BigInteger $y
389 389
      *
390
-     * @return array
390
+     * @return BigInteger[]
391 391
      *
392 392
      */
393 393
     public function divide(BigInteger $y)
@@ -420,8 +420,8 @@  discard block
 block discarded – undo
420 420
      * ?>
421 421
      * </code>
422 422
      *
423
-     * @param \Jose\Util\Integer $e
424
-     * @param \Jose\Util\Integer $n
423
+     * @param BigInteger $e
424
+     * @param BigInteger $n
425 425
      *
426 426
      * @return \Jose\Util\BigInteger
427 427
      *
@@ -487,9 +487,9 @@  discard block
 block discarded – undo
487 487
      * ?>
488 488
      * </code>
489 489
      *
490
-     * @param \Jose\Util\Integer $n
490
+     * @param BigInteger $n
491 491
      *
492
-     * @return \Jose\Util\eger|false
492
+     * @return BigInteger
493 493
      *
494 494
      */
495 495
     public function modInverse(BigInteger $n)
@@ -526,7 +526,7 @@  discard block
 block discarded – undo
526 526
      *
527 527
      * Note how the same comparison operator is used.  If you want to test for equality, use $x->equals($y).
528 528
      *
529
-     * @param \Jose\Util\Integer $y
529
+     * @param BigInteger $y
530 530
      *
531 531
      * @return int < 0 if $this is less than $y; > 0 if $this is greater than $y, and 0 if they are equal.
532 532
      *
@@ -651,6 +651,7 @@  discard block
 block discarded – undo
651 651
      * Removes leading zeros and truncates (if necessary) to maintain the appropriate precision
652 652
      *
653 653
      * @param \Jose\Util\BigInteger
654
+     * @param BigInteger $result
654 655
      *
655 656
      * @return \Jose\Util\BigInteger
656 657
      */
Please login to merge, or discard this patch.