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 ( d79416...c4f121 )
by Joni
03:43
created
lib/JWX/JWT/JWT.php 1 patch
Switch Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -66,14 +66,14 @@
 block discarded – undo
66 66
     {
67 67
         $this->_parts = explode(".", $token);
68 68
         switch (count($this->_parts)) {
69
-            case 3:
70
-                $this->_type = self::TYPE_JWS;
71
-                break;
72
-            case 5:
73
-                $this->_type = self::TYPE_JWE;
74
-                break;
75
-            default:
76
-                throw new \UnexpectedValueException("Not a JWT token.");
69
+        case 3:
70
+            $this->_type = self::TYPE_JWS;
71
+            break;
72
+        case 5:
73
+            $this->_type = self::TYPE_JWE;
74
+            break;
75
+        default:
76
+            throw new \UnexpectedValueException("Not a JWT token.");
77 77
         }
78 78
     }
79 79
     
Please login to merge, or discard this patch.
lib/JWX/Util/Base64.php 1 patch
Switch Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -31,17 +31,17 @@
 block discarded – undo
31 31
     {
32 32
         $data = strtr($data, "-_", "+/");
33 33
         switch (strlen($data) % 4) {
34
-            case 0:
35
-                break;
36
-            case 2:
37
-                $data .= "==";
38
-                break;
39
-            case 3:
40
-                $data .= "=";
41
-                break;
42
-            default:
43
-                throw new \UnexpectedValueException(
44
-                    "Malformed base64url encoding.");
34
+        case 0:
35
+            break;
36
+        case 2:
37
+            $data .= "==";
38
+            break;
39
+        case 3:
40
+            $data .= "=";
41
+            break;
42
+        default:
43
+            throw new \UnexpectedValueException(
44
+                "Malformed base64url encoding.");
45 45
         }
46 46
         return self::decode($data);
47 47
     }
Please login to merge, or discard this patch.