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 ( 7a840f...5fbc44 )
by Christian
01:36
created
src/Service/ChartService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
             return [];
42 42
         }
43 43
 
44
-        return array_map(function ($data) {
44
+        return array_map(function($data) {
45 45
             return ArtistInfo::fromApi($data);
46 46
         }, $response['artists']['artist']);
47 47
     }
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
             return [];
69 69
         }
70 70
 
71
-        return array_map(function ($data) {
71
+        return array_map(function($data) {
72 72
             return Tag::fromApi($data);
73 73
         }, $response['tags']['tag']);
74 74
     }
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
             return [];
96 96
         }
97 97
 
98
-        return array_map(function ($data) {
98
+        return array_map(function($data) {
99 99
             return Song::fromApi($data);
100 100
         }, $response['tracks']['track']);
101 101
     }
Please login to merge, or discard this patch.
src/Model/SongInfo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@
 block discarded – undo
140 140
      */
141 141
     public static function fromApi(array $data): self
142 142
     {
143
-        $tags   = [];
143
+        $tags = [];
144 144
 
145 145
         if (isset($data['toptags']['tag'])) {
146 146
             foreach ((array) $data['toptags']['tag'] as $tag) {
Please login to merge, or discard this patch.