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 — develop ( 770ab8...ca6138 )
by Gavin
03:54 queued 39s
created
src/JumpCloud/Response/ResponseFactoryInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -6,5 +6,8 @@
 block discarded – undo
6 6
 
7 7
 interface ResponseFactoryInterface
8 8
 {
9
+    /**
10
+     * @return \JumpCloud\Authorization\AuthorizationResponse
11
+     */
9 12
     public function create(Response $response);
10 13
 }
Please login to merge, or discard this patch.
src/JumpCloud/Request/Request.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     public function __construct()
30 30
     {
31 31
         $this->method = 'GET';
32
-        $this->headers = [];
32
+        $this->headers = [ ];
33 33
         $this->body = null;
34 34
     }
35 35
 
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
      */
80 80
     public function addHeader($header, $value)
81 81
     {
82
-        $this->headers[$header] = $value;
82
+        $this->headers[ $header ] = $value;
83 83
     }
84 84
 
85 85
     /**
Please login to merge, or discard this patch.
src/JumpCloud/Response/ExceptionResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      */
15 15
     public function __construct($message, $code)
16 16
     {
17
-        $this->body = ['message' => $message];
17
+        $this->body = [ 'message' => $message ];
18 18
         $this->code = $code;
19 19
     }
20 20
 
Please login to merge, or discard this patch.