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 ( 48ef9d...490df9 )
by Christian
01:26
created
src/Service/UserService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
             return [];
71 71
         }
72 72
 
73
-        return array_map(static function ($data) {
73
+        return array_map(static function($data) {
74 74
             return Setlist::fromApi($data);
75 75
         }, $response['setlist']);
76 76
     }
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
             return [];
97 97
         }
98 98
 
99
-        return array_map(static function ($data) {
99
+        return array_map(static function($data) {
100 100
             return Setlist::fromApi($data);
101 101
         }, $response['setlist']);
102 102
     }
Please login to merge, or discard this patch.
src/Service/CountryService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
             return [];
48 48
         }
49 49
 
50
-        return array_map(static function ($data) {
50
+        return array_map(static function($data) {
51 51
             return Country::fromApi($data);
52 52
         }, $response['country']);
53 53
     }
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
@@ -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 Setlist::fromApi($data);
92 92
         }, $response['setlist']);
93 93
     }
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
      */
106 106
     public function getVenueSetlists(string $venueId, int $page = 1): array
107 107
     {
108
-        $response =  $this->connection->call('venue/'.$venueId.'/setlists', [
108
+        $response = $this->connection->call('venue/'.$venueId.'/setlists', [
109 109
             'p' => $page,
110 110
         ]);
111 111
 
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
             return [];
114 114
         }
115 115
 
116
-        return array_map(static function ($data) {
116
+        return array_map(static function($data) {
117 117
             return Setlist::fromApi($data);
118 118
         }, $response['setlist']);
119 119
     }
@@ -127,13 +127,13 @@  discard block
 block discarded – undo
127 127
      */
128 128
     public function search(SetlistSearchBuilder $builder): array
129 129
     {
130
-        $response=  $this->connection->call('search/setlists', $builder->getQuery());
130
+        $response = $this->connection->call('search/setlists', $builder->getQuery());
131 131
 
132 132
         if (!\array_key_exists('setlist', $response)) {
133 133
             return [];
134 134
         }
135 135
 
136
-        return array_map(static function ($data) {
136
+        return array_map(static function($data) {
137 137
             return Setlist::fromApi($data);
138 138
         }, $response['setlist']);
139 139
     }
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
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
             return [];
65 65
         }
66 66
 
67
-        return array_map(static function ($data) {
67
+        return array_map(static function($data) {
68 68
             return City::fromApi($data);
69 69
         }, $response['cities']);
70 70
     }
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
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
             return [];
65 65
         }
66 66
 
67
-        return array_map(static function ($data) {
67
+        return array_map(static function($data) {
68 68
             return Venue::fromApi($data);
69 69
         }, $response['venue']);
70 70
     }
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
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
             return [];
65 65
         }
66 66
 
67
-        return array_map(static function ($data) {
67
+        return array_map(static function($data) {
68 68
             return Artist::fromApi($data);
69 69
         }, $response['artist']);
70 70
     }
Please login to merge, or discard this patch.