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 ( 393393...642c1a )
by Sergey
11s
created
src/Decoders/Mapping/Loader/AnnotationLoader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -489,7 +489,7 @@
 block discarded – undo
489 489
     /**
490 490
      * Parse property loaders
491 491
      *
492
-     * @param array|Loader[] $loaders
492
+     * @param \Reva2\JsonApi\Annotations\Reva2\JsonApi\Annotations\Loader[] $loaders
493 493
      * @return array
494 494
      */
495 495
     private function parseLoaders(array $loaders)
Please login to merge, or discard this patch.
src/Decoders/DataParser.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -664,7 +664,7 @@  discard block
 block discarded – undo
664 664
                 return $this->parseArray(
665 665
                     $data,
666 666
                     $path,
667
-                    function ($data, $path, DataParser $parser) use ($typeParams) {
667
+                    function($data, $path, DataParser $parser) use ($typeParams) {
668 668
                         return $parser->parseScalarValue($data, $path, $typeParams);
669 669
                     }
670 670
                 );
@@ -674,7 +674,7 @@  discard block
 block discarded – undo
674 674
                 return $this->parseArray(
675 675
                     $data,
676 676
                     $path,
677
-                    function ($data, $path, DataParser $parser) use ($format) {
677
+                    function($data, $path, DataParser $parser) use ($format) {
678 678
                         return $parser->parseDateTime($data, $path, $format);
679 679
                     }
680 680
                 );
@@ -683,7 +683,7 @@  discard block
 block discarded – undo
683 683
                 return $this->parseArray(
684 684
                     $data,
685 685
                     $path,
686
-                    function ($data, $path, DataParser $parser) use ($typeParams, $propMetadata) {
686
+                    function($data, $path, DataParser $parser) use ($typeParams, $propMetadata) {
687 687
                         return $parser->parseResourceOrObject($data, $path, $typeParams, $propMetadata);
688 688
                     }
689 689
                 );
@@ -692,7 +692,7 @@  discard block
 block discarded – undo
692 692
                 return $this->parseArray(
693 693
                     $data,
694 694
                     $path,
695
-                    function ($data, $path, DataParser $parser) use ($typeParams, $propMetadata) {
695
+                    function($data, $path, DataParser $parser) use ($typeParams, $propMetadata) {
696 696
                         return $parser->parseArrayValue($data, $path, $typeParams, $propMetadata);
697 697
                     }
698 698
                 );
@@ -701,7 +701,7 @@  discard block
 block discarded – undo
701 701
                 return $this->parseArray(
702 702
                     $data,
703 703
                     $path,
704
-                    function ($data, $path, DataParser $parser) {
704
+                    function($data, $path, DataParser $parser) {
705 705
                         return $parser->parseRaw($data, $path);
706 706
                     }
707 707
                 );
Please login to merge, or discard this patch.