GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 99c7b8...f978ff )
by Walter
04:04
created
src/BigInteger.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     /**
29 29
      * Initializes a new instance of this class.
30 30
      *
31
-     * @param string|int|BigInteger $value The value to set.
31
+     * @param integer $value The value to set.
32 32
      * @param bool $mutable Whether or not the state of this object can be changed.
33 33
      */
34 34
     public function __construct($value = 0, $mutable = true)
@@ -95,6 +95,7 @@  discard block
 block discarded – undo
95 95
     /**
96 96
      * Compares this number and the given number.
97 97
      *
98
+     * @param string $value
98 99
      * @return int Returns -1 is the number is less than this number. 0 if equal and 1 when greater.
99 100
      */
100 101
     public function cmp($value)
Please login to merge, or discard this patch.