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
Pull Request — 3.x (#2429)
by
unknown
02:03
created
Slim/Http/Response.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -222,8 +222,8 @@
 block discarded – undo
222 222
     protected function filterStatus($status)
223 223
     {
224 224
         if (!is_integer($status) ||
225
-            $status<StatusCode::HTTP_CONTINUE ||
226
-            $status>StatusCode::HTTP_NETWORK_CONNECTION_TIMEOUT_ERROR
225
+            $status < StatusCode::HTTP_CONTINUE ||
226
+            $status > StatusCode::HTTP_NETWORK_CONNECTION_TIMEOUT_ERROR
227 227
         ) {
228 228
             throw new InvalidArgumentException('Invalid HTTP status code');
229 229
         }
Please login to merge, or discard this patch.
Slim/Http/StatusCode.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
      *
149 149
      * @var int
150 150
      */
151
-    const HTTP_UNUSED= 306;
151
+    const HTTP_UNUSED = 306;
152 152
 
153 153
     /**
154 154
      * Status code HTTP_TEMPORARY_REDIRECT
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
      *
177 177
      * @var int
178 178
      */
179
-    const HTTP_UNAUTHORIZED  = 401;
179
+    const HTTP_UNAUTHORIZED = 401;
180 180
 
181 181
     /**
182 182
      * Status code HTTP_PAYMENT_REQUIRED
Please login to merge, or discard this patch.