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 ( f8863b...48fd44 )
by Sergey
04:48
created
src/Contracts/Services/JsonApiServiceInterface.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,6 @@
 block discarded – undo
53 53
     /**
54 54
      * Returns response factory
55 55
      *
56
-     * @param RequestInterface $encodingParams
57 56
      * @return ResponsesInterface
58 57
      */
59 58
     public function getResponseFactory(RequestInterface $request);
Please login to merge, or discard this patch.
src/Services/JsonApiService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -278,13 +278,13 @@
 block discarded – undo
278 278
     private function createPsr7Request(Request $request)
279 279
     {
280 280
         return new Psr7Request(
281
-            function () use ($request) {
281
+            function() use ($request) {
282 282
                 return $request->getMethod();
283 283
             },
284
-            function ($name) use ($request) {
284
+            function($name) use ($request) {
285 285
                 return $request->headers->get($name);
286 286
             },
287
-            function () use ($request) {
287
+            function() use ($request) {
288 288
                 return $request->query->all();
289 289
             }
290 290
         );
Please login to merge, or discard this patch.