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 ( b5d278...796de0 )
by Sergey
17s queued 11s
created
src/Decoders/DataParser.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -685,7 +685,7 @@  discard block
 block discarded – undo
685 685
                 return $this->parseArray(
686 686
                     $data,
687 687
                     $path,
688
-                    function ($data, $path, DataParser $parser) use ($typeParams) {
688
+                    function($data, $path, DataParser $parser) use ($typeParams) {
689 689
                         return $parser->parseScalarValue($data, $path, $typeParams);
690 690
                     }
691 691
                 );
@@ -695,7 +695,7 @@  discard block
 block discarded – undo
695 695
                 return $this->parseArray(
696 696
                     $data,
697 697
                     $path,
698
-                    function ($data, $path, DataParser $parser) use ($format) {
698
+                    function($data, $path, DataParser $parser) use ($format) {
699 699
                         return $parser->parseDateTime($data, $path, $format);
700 700
                     }
701 701
                 );
@@ -704,7 +704,7 @@  discard block
 block discarded – undo
704 704
                 return $this->parseArray(
705 705
                     $data,
706 706
                     $path,
707
-                    function ($data, $path, DataParser $parser) use ($typeParams, $propMetadata) {
707
+                    function($data, $path, DataParser $parser) use ($typeParams, $propMetadata) {
708 708
                         return $parser->parseResourceOrObject($data, $path, $typeParams, $propMetadata);
709 709
                     }
710 710
                 );
@@ -713,7 +713,7 @@  discard block
 block discarded – undo
713 713
                 return $this->parseArray(
714 714
                     $data,
715 715
                     $path,
716
-                    function ($data, $path, DataParser $parser) use ($typeParams, $propMetadata) {
716
+                    function($data, $path, DataParser $parser) use ($typeParams, $propMetadata) {
717 717
                         return $parser->parseArrayValue($data, $path, $typeParams, $propMetadata);
718 718
                     }
719 719
                 );
@@ -722,7 +722,7 @@  discard block
 block discarded – undo
722 722
                 return $this->parseArray(
723 723
                     $data,
724 724
                     $path,
725
-                    function ($data, $path, DataParser $parser) {
725
+                    function($data, $path, DataParser $parser) {
726 726
                         return $parser->parseRaw($data, $path);
727 727
                     }
728 728
                 );
@@ -931,14 +931,14 @@  discard block
 block discarded – undo
931 931
     private function parseArrayRelationship($data, $pathValue, PropertyMetadataInterface $relationship)
932 932
     {
933 933
 
934
-        $data = $this->parseArray($data, $relationship->getDataPath(), function ($data, $path) use ($relationship) {
934
+        $data = $this->parseArray($data, $relationship->getDataPath(), function($data, $path) use ($relationship) {
935 935
             $resType = null;
936 936
             if ($this->hasValue($data, $path . '.type')) {
937 937
                 $resType = $this->parseString($data, $path . '.type');
938 938
             }
939 939
 
940 940
             $resId = null;
941
-            if ($this->hasValue($data, $path .'.id')) {
941
+            if ($this->hasValue($data, $path . '.id')) {
942 942
                 $resId = $this->getValue($data, $path . '.id');
943 943
             }
944 944
 
@@ -960,7 +960,7 @@  discard block
 block discarded – undo
960 960
 
961 961
                 $parsed = $this->parseResourceOrObject(
962 962
                     [$idx => $linkedData],
963
-                    '[' . $idx .']',
963
+                    '[' . $idx . ']',
964 964
                     $params[1],
965 965
                     $relationship
966 966
                 );
Please login to merge, or discard this patch.