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.
Passed
Push — master ( e271c1...debdfc )
by Joni
06:33
created
lib/JWX/JWT/JWT.php 1 patch
Switch Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -69,14 +69,14 @@
 block discarded – undo
69 69
     {
70 70
         $this->_parts = explode('.', $token);
71 71
         switch (count($this->_parts)) {
72
-            case 3:
73
-                $this->_type = self::TYPE_JWS;
74
-                break;
75
-            case 5:
76
-                $this->_type = self::TYPE_JWE;
77
-                break;
78
-            default:
79
-                throw new \UnexpectedValueException('Not a JWT token.');
72
+        case 3:
73
+            $this->_type = self::TYPE_JWS;
74
+            break;
75
+        case 5:
76
+            $this->_type = self::TYPE_JWE;
77
+            break;
78
+        default:
79
+            throw new \UnexpectedValueException('Not a JWT token.');
80 80
         }
81 81
     }
82 82
 
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
@@ -38,17 +38,17 @@
 block discarded – undo
38 38
     {
39 39
         $data = strtr($data, '-_', '+/');
40 40
         switch (strlen($data) % 4) {
41
-            case 0:
42
-                break;
43
-            case 2:
44
-                $data .= '==';
45
-                break;
46
-            case 3:
47
-                $data .= '=';
48
-                break;
49
-            default:
50
-                throw new \UnexpectedValueException(
51
-                    'Malformed base64url encoding.');
41
+        case 0:
42
+            break;
43
+        case 2:
44
+            $data .= '==';
45
+            break;
46
+        case 3:
47
+            $data .= '=';
48
+            break;
49
+        default:
50
+            throw new \UnexpectedValueException(
51
+                'Malformed base64url encoding.');
52 52
         }
53 53
         return self::decode($data);
54 54
     }
Please login to merge, or discard this patch.