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 — 3.x ( e6f75e...ccef5f )
by
unknown
10s
created
example/index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,12 +26,12 @@
 block discarded – undo
26 26
  * argument for `Slim::get`, `Slim::post`, `Slim::put`, `Slim::patch`, and `Slim::delete`
27 27
  * is an anonymous function.
28 28
  */
29
-$app->get('/', function ($request, $response, $args) {
29
+$app->get('/', function($request, $response, $args) {
30 30
     $response->write("Welcome to Slim!");
31 31
     return $response;
32 32
 });
33 33
 
34
-$app->get('/hello[/{name}]', function ($request, $response, $args) {
34
+$app->get('/hello[/{name}]', function($request, $response, $args) {
35 35
     $response->write("Hello, " . $args['name']);
36 36
     return $response;
37 37
 })->setArgument('name', 'World!');
Please login to merge, or discard this patch.
Slim/Http/Headers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
             $key = strtoupper($key);
57 57
             if (isset(static::$special[$key]) || strpos($key, 'HTTP_') === 0) {
58 58
                 if ($key !== 'HTTP_CONTENT_LENGTH') {
59
-                    $data[$key] =  $value;
59
+                    $data[$key] = $value;
60 60
                 }
61 61
             }
62 62
         }
Please login to merge, or discard this patch.
Slim/Handlers/AbstractError.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      */
26 26
     public function __construct($displayErrorDetails = false)
27 27
     {
28
-        $this->displayErrorDetails = (bool) $displayErrorDetails;
28
+        $this->displayErrorDetails = (bool)$displayErrorDetails;
29 29
     }
30 30
 
31 31
     /**
Please login to merge, or discard this patch.
Slim/Router.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@
 block discarded – undo
188 188
             return $this->dispatcher;
189 189
         }
190 190
 
191
-        $routeDefinitionCallback = function (RouteCollector $r) {
191
+        $routeDefinitionCallback = function(RouteCollector $r) {
192 192
             foreach ($this->getRoutes() as $route) {
193 193
                 $r->addRoute($route->getMethods(), $route->getPattern(), $route->getIdentifier());
194 194
             }
Please login to merge, or discard this patch.
Slim/Handlers/NotFound.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,6 +121,6 @@
 block discarded – undo
121 121
         <a href='$homeUrl'>Visit the Home Page</a>
122 122
     </body>
123 123
 </html>
124
-END;
124
+end;
125 125
     }
126 126
 }
Please login to merge, or discard this patch.
Slim/Handlers/NotAllowed.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@
 block discarded – undo
140 140
         <p>Method not allowed. Must be one of: <strong>$allow</strong></p>
141 141
     </body>
142 142
 </html>
143
-END;
143
+end;
144 144
 
145 145
         return $output;
146 146
     }
Please login to merge, or discard this patch.
Slim/MiddlewareAwareTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
             $this->seedMiddlewareStack();
61 61
         }
62 62
         $next = $this->tip;
63
-        $this->tip = function (
63
+        $this->tip = function(
64 64
             ServerRequestInterface $request,
65 65
             ResponseInterface $response
66 66
         ) use (
Please login to merge, or discard this patch.
Slim/Http/Uri.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -186,12 +186,12 @@  discard block
 block discarded – undo
186 186
             $host = $matches[1];
187 187
 
188 188
             if (isset($matches[2])) {
189
-                $port = (int) substr($matches[2], 1);
189
+                $port = (int)substr($matches[2], 1);
190 190
             }
191 191
         } else {
192 192
             $pos = strpos($host, ':');
193 193
             if ($pos !== false) {
194
-                $port = (int) substr($host, $pos + 1);
194
+                $port = (int)substr($host, $pos + 1);
195 195
                 $host = strstr($host, ':', true);
196 196
             }
197 197
         }
@@ -396,7 +396,7 @@  discard block
 block discarded – undo
396 396
     {
397 397
         return preg_replace_callback(
398 398
             '/(?:[^a-zA-Z0-9_\-\.~!\$&\'\(\)\*\+,;=]+|%(?![A-Fa-f0-9]{2}))/u',
399
-            function ($match) {
399
+            function($match) {
400 400
                 return rawurlencode($match[0]);
401 401
             },
402 402
             $query
@@ -641,7 +641,7 @@  discard block
 block discarded – undo
641 641
     {
642 642
         return preg_replace_callback(
643 643
             '/(?:[^a-zA-Z0-9_\-\.~:@&=\+\$,\/;%]+|%(?![A-Fa-f0-9]{2}))/',
644
-            function ($match) {
644
+            function($match) {
645 645
                 return rawurlencode($match[0]);
646 646
             },
647 647
             $path
@@ -714,7 +714,7 @@  discard block
 block discarded – undo
714 714
     {
715 715
         return preg_replace_callback(
716 716
             '/(?:[^a-zA-Z0-9_\-\.~!\$&\'\(\)\*\+,;=%:@\/\?]+|%(?![A-Fa-f0-9]{2}))/',
717
-            function ($match) {
717
+            function($match) {
718 718
                 return rawurlencode($match[0]);
719 719
             },
720 720
             $query
Please login to merge, or discard this patch.
Slim/App.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
      */
260 260
     public function redirect($from, $to, $status = 302)
261 261
     {
262
-        $handler = function ($request, ResponseInterface $response) use ($to, $status) {
262
+        $handler = function($request, ResponseInterface $response) use ($to, $status) {
263 263
             return $response->withHeader('Location', (string)$to)->withStatus($status);
264 264
         };
265 265
 
@@ -503,7 +503,7 @@  discard block
 block discarded – undo
503 503
         $router = $this->container->get('router');
504 504
 
505 505
         // If router hasn't been dispatched or the URI changed then dispatch
506
-        if (null === $routeInfo || ($routeInfo['request'] !== [$request->getMethod(), (string) $request->getUri()])) {
506
+        if (null === $routeInfo || ($routeInfo['request'] !== [$request->getMethod(), (string)$request->getUri()])) {
507 507
             $request = $this->dispatchRouterAndPrepareRoute($request, $router);
508 508
             $routeInfo = $request->getAttribute('routeInfo');
509 509
         }
@@ -595,7 +595,7 @@  discard block
 block discarded – undo
595 595
             $request = $request->withAttribute('route', $route);
596 596
         }
597 597
 
598
-        $routeInfo['request'] = [$request->getMethod(), (string) $request->getUri()];
598
+        $routeInfo['request'] = [$request->getMethod(), (string)$request->getUri()];
599 599
 
600 600
         return $request->withAttribute('routeInfo', $routeInfo);
601 601
     }
@@ -624,7 +624,7 @@  discard block
 block discarded – undo
624 624
             }
625 625
             $size = $response->getBody()->getSize();
626 626
             if ($size !== null && !$response->hasHeader('Content-Length')) {
627
-                $response = $response->withHeader('Content-Length', (string) $size);
627
+                $response = $response->withHeader('Content-Length', (string)$size);
628 628
             }
629 629
         }
630 630
 
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
             }
111 111
         }
112 112
 
113
-        throw new BadMethodCallException("Method $method is not a valid method");
113
+        throw new BadMethodCallException("method $method is not a valid method");
114 114
     }
115 115
 
116 116
     /**
Please login to merge, or discard this patch.