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 ( 18260d...8b7220 )
by cao
03:21
created
src/Controller/ExceptionRenderer.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,11 +14,11 @@
 block discarded – undo
14 14
      */
15 15
     public function render(\Exception $e)
16 16
     {
17
-        if($e instanceof HttpException){
17
+        if ($e instanceof HttpException) {
18 18
             return new Response($e->getMessage(), $e->getStatusCode(), $e->getHeaders());
19
-        } if($e instanceof \InvalidArgumentException){
19
+        } if ($e instanceof \InvalidArgumentException) {
20 20
             return new Response($e->getMessage(), Response::HTTP_BAD_REQUEST);
21
-        }else{
21
+        }else {
22 22
             return new Response($e->getMessage(), Response::HTTP_INTERNAL_SERVER_ERROR);
23 23
         }
24 24
     }
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
             return new Response($e->getMessage(), $e->getStatusCode(), $e->getHeaders());
19 19
         } if($e instanceof \InvalidArgumentException){
20 20
             return new Response($e->getMessage(), Response::HTTP_BAD_REQUEST);
21
-        }else{
21
+        } else{
22 22
             return new Response($e->getMessage(), Response::HTTP_INTERNAL_SERVER_ERROR);
23 23
         }
24 24
     }
Please login to merge, or discard this patch.