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 ( 981090...e30cbf )
by Christian
01:43
created
src/Service/AlbumService.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
             throw new InvalidArgumentException('A maximum of 10 tags is allowed');
38 38
         }
39 39
 
40
-        array_filter($tags, static function ($tag) {
40
+        array_filter($tags, static function($tag) {
41 41
             if (null === $tag || !\is_string($tag)) {
42 42
                 throw new InvalidArgumentException(sprintf('Invalid tag given'));
43 43
             }
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
             return [];
72 72
         }
73 73
 
74
-        return array_map(static function ($data) {
74
+        return array_map(static function($data) {
75 75
             return Tag::fromApi($data);
76 76
         }, $response['tags']['tag']);
77 77
     }
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
             return [];
88 88
         }
89 89
 
90
-        return array_map(static function ($data) {
90
+        return array_map(static function($data) {
91 91
             return Tag::fromApi($data);
92 92
         }, $response['toptags']['tag']);
93 93
     }
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
             return [];
120 120
         }
121 121
 
122
-        return array_map(static function ($data) {
122
+        return array_map(static function($data) {
123 123
             return Album::fromApi($data);
124 124
         }, $response['results']['albummatches']['album']);
125 125
     }
Please login to merge, or discard this patch.