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 ( d8610c...90cf5c )
by Sergey
08:02
created
src/Decoders/DataParser.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -576,7 +576,7 @@  discard block
 block discarded – undo
576 576
                 return $this->parseArray(
577 577
                     $data,
578 578
                     $path,
579
-                    function ($data, $path, DataParser $parser) use ($typeParams) {
579
+                    function($data, $path, DataParser $parser) use ($typeParams) {
580 580
                         return $parser->parseScalarValue($data, $path, $typeParams);
581 581
                     }
582 582
                 );
@@ -586,7 +586,7 @@  discard block
 block discarded – undo
586 586
                 return $this->parseArray(
587 587
                     $data,
588 588
                     $path,
589
-                    function ($data, $path, DataParser $parser) use ($format) {
589
+                    function($data, $path, DataParser $parser) use ($format) {
590 590
                         return $parser->parseDateTime($data, $path, $format);
591 591
                     }
592 592
                 );
@@ -595,7 +595,7 @@  discard block
 block discarded – undo
595 595
                 return $this->parseArray(
596 596
                     $data,
597 597
                     $path,
598
-                    function ($data, $path, DataParser $parser) use ($typeParams) {
598
+                    function($data, $path, DataParser $parser) use ($typeParams) {
599 599
                         return $parser->parseObjectValue($data, $path, $typeParams);
600 600
                     }
601 601
                 );
@@ -604,7 +604,7 @@  discard block
 block discarded – undo
604 604
                 return $this->parseArray(
605 605
                     $data,
606 606
                     $path,
607
-                    function ($data, $path, DataParser $parser) use ($typeParams) {
607
+                    function($data, $path, DataParser $parser) use ($typeParams) {
608 608
                         return $parser->parseArrayValue($data, $path, $typeParams);
609 609
                     }
610 610
                 );
@@ -613,7 +613,7 @@  discard block
 block discarded – undo
613 613
                 return $this->parseArray(
614 614
                     $data,
615 615
                     $path,
616
-                    function ($data, $path, DataParser $parser) {
616
+                    function($data, $path, DataParser $parser) {
617 617
                         return $parser->parseRaw($data, $path);
618 618
                     }
619 619
                 );
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.