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 ( b3b8e9...235aa1 )
by Joni
03:30
created
lib/ASN1/Type/Primitive/Real.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -271,7 +271,7 @@
 block discarded – undo
271 271
     /**
272 272
      * Test that number is valid for this context.
273 273
      *
274
-     * @param mixed $num
274
+     * @param string $num
275 275
      * @return boolean
276 276
      */
277 277
     private static function _validateNumber($num)
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/Integer.php 1 patch
Switch Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -57,11 +57,11 @@
 block discarded – undo
57 57
         $num = gmp_init($this->_number, 10);
58 58
         switch (gmp_sign($num)) {
59 59
             // positive
60
-            case 1:
61
-                return self::_encodePositiveInteger($num);
62
-            // negative
63
-            case -1:
64
-                return self::_encodeNegativeInteger($num);
60
+        case 1:
61
+            return self::_encodePositiveInteger($num);
62
+        // negative
63
+        case -1:
64
+            return self::_encodeNegativeInteger($num);
65 65
         }
66 66
         // zero
67 67
         return "\0";
Please login to merge, or discard this patch.
lib/ASN1/Element.php 1 patch
Switch Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -331,10 +331,10 @@
 block discarded – undo
331 331
     private function _isPseudoType($tag)
332 332
     {
333 333
         switch ($tag) {
334
-            case self::TYPE_STRING:
335
-                return $this instanceof StringType;
336
-            case self::TYPE_TIME:
337
-                return $this instanceof TimeType;
334
+        case self::TYPE_STRING:
335
+            return $this instanceof StringType;
336
+        case self::TYPE_TIME:
337
+            return $this instanceof TimeType;
338 338
         }
339 339
         return false;
340 340
     }
Please login to merge, or discard this patch.