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
Branch master (dc8c3b)
by Dmitrii
04:12 queued 11s
created
Api.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -67,6 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
     /**
69 69
      * @param array $fields
70
+     * @param string $path
70 71
      *
71 72
      * @return array
72 73
      */
@@ -104,6 +105,9 @@  discard block
 block discarded – undo
104 105
         );
105 106
     }
106 107
 
108
+    /**
109
+     * @param string $content
110
+     */
107 111
     private function parseResponse($content)
108 112
     {
109 113
         return json_decode($content, true);
Please login to merge, or discard this patch.
Tests/Unit/ApiTest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
     }
361 361
 
362 362
     /**
363
-     * @return MockObject|HttpClientInterface
363
+     * @return HttpClientInterface
364 364
      */
365 365
     protected function createSuccessHttpClientStub()
366 366
     {
@@ -375,7 +375,7 @@  discard block
 block discarded – undo
375 375
     }
376 376
 
377 377
     /**
378
-     * @return MockObject|HttpClientInterface
378
+     * @return HttpClientInterface
379 379
      */
380 380
     protected function createHttpClientMock()
381 381
     {
Please login to merge, or discard this patch.