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 ( 885f27...ad03be )
by François
02:00
created
src/Http/Request.php 1 patch
Doc Comments   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,8 +39,8 @@  discard block
 block discarded – undo
39 39
     private $requestHeaders;
40 40
 
41 41
     /**
42
-     * @param int    $statusCode
43
-     * @param string $responseBody
42
+     * @param string $requestMethod
43
+     * @param string $requestBody
44 44
      */
45 45
     public function __construct($requestMethod, $requestUri, array $requestHeaders = [], $requestBody = null)
46 46
     {
@@ -87,6 +87,10 @@  discard block
 block discarded – undo
87 87
         );
88 88
     }
89 89
 
90
+    /**
91
+     * @param string $key
92
+     * @param string $value
93
+     */
90 94
     public function setHeader($key, $value)
91 95
     {
92 96
         $this->requestHeaders[$key] = $value;
Please login to merge, or discard this patch.