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 ( e09fad...c764ec )
by Christian
02:47
created
src/Service/CountryService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
             return [];
34 34
         }
35 35
 
36
-        return array_map(function ($data) {
36
+        return array_map(function($data) {
37 37
             return Country::fromApi($data);
38 38
         }, $response['country']);
39 39
     }
Please login to merge, or discard this patch.
src/Service/VenueService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
             return [];
56 56
         }
57 57
 
58
-        return array_map(function ($data) {
58
+        return array_map(function($data) {
59 59
             return Venue::fromApi($data);
60 60
         }, $response['venue']);
61 61
     }
Please login to merge, or discard this patch.
src/Service/SetlistService.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
             return [];
73 73
         }
74 74
 
75
-        return array_map(function ($data) {
75
+        return array_map(function($data) {
76 76
             return Setlist::fromApi($data);
77 77
         }, $response['setlist']);
78 78
     }
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      */
91 91
     public function getVenueSetlists(string $venueId, int $page = 1): array
92 92
     {
93
-        $response =  $this->call('venue/'.$venueId.'/setlists', [
93
+        $response = $this->call('venue/'.$venueId.'/setlists', [
94 94
             'p' => $page,
95 95
         ]);
96 96
 
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
             return [];
99 99
         }
100 100
 
101
-        return array_map(function ($data) {
101
+        return array_map(function($data) {
102 102
             return Setlist::fromApi($data);
103 103
         }, $response['setlist']);
104 104
     }
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
      */
117 117
     public function search(array $fields, int $page = 1): array
118 118
     {
119
-        $response=  $this->call('search/setlists', array_merge($fields, [
119
+        $response = $this->call('search/setlists', array_merge($fields, [
120 120
             'p' => $page,
121 121
         ]));
122 122
 
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
             return [];
125 125
         }
126 126
 
127
-        return array_map(function ($data) {
127
+        return array_map(function($data) {
128 128
             return Setlist::fromApi($data);
129 129
         }, $response['setlist']);
130 130
     }
Please login to merge, or discard this patch.
src/Service/UserService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
             return [];
57 57
         }
58 58
 
59
-        return array_map(function ($data) {
59
+        return array_map(function($data) {
60 60
             return Setlist::fromApi($data);
61 61
         }, $response['setlist']);
62 62
     }
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
             return [];
83 83
         }
84 84
 
85
-        return array_map(function ($data) {
85
+        return array_map(function($data) {
86 86
             return Setlist::fromApi($data);
87 87
         }, $response['setlist']);
88 88
     }
Please login to merge, or discard this patch.
src/Service/CityService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
             return [];
56 56
         }
57 57
 
58
-        return array_map(function ($data) {
58
+        return array_map(function($data) {
59 59
             return City::fromApi($data);
60 60
         }, $response['cities']);
61 61
     }
Please login to merge, or discard this patch.
src/Service/ArtistService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
             return [];
61 61
         }
62 62
 
63
-        return array_map(function ($data) {
63
+        return array_map(function($data) {
64 64
             return Artist::fromApi($data);
65 65
         }, $response['artist']);
66 66
     }
Please login to merge, or discard this patch.