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 ( dd13da...b61209 )
by Richard
04:01 queued 54s
created
src/Phase/TakeATicket/DataSource/AbstractSql.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
         $dataStore = $this;
171 171
         $instruments = $dataStore->fetchInstrumentsForSongId($song['id']);
172 172
         $instruments = array_map(
173
-            function (Instrument $instrument) {
173
+            function(Instrument $instrument) {
174 174
                 return $instrument->getName();
175 175
             },
176 176
             $instruments
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
 
185 185
         $platforms = $dataStore->fetchPlatformsForSongId($song['id']);
186 186
         $platforms = array_map(
187
-            function (Platform $platform) {
187
+            function(Platform $platform) {
188 188
                 return $platform->getName();
189 189
             },
190 190
             $platforms
@@ -914,7 +914,7 @@  discard block
 block discarded – undo
914 914
 
915 915
         $dbConn = $this;
916 916
         $instruments = array_map(
917
-            function ($row) use ($dbConn) {
917
+            function($row) use ($dbConn) {
918 918
                 return $dbConn->buildInstrumentFromDbRow($row);
919 919
             },
920 920
             $instrumentRows
@@ -937,7 +937,7 @@  discard block
 block discarded – undo
937 937
 
938 938
         $dbConn = $this;
939 939
         $platforms = array_map(
940
-            function ($row) use ($dbConn) {
940
+            function($row) use ($dbConn) {
941 941
                 return $dbConn->buildPlatformFromDbRow($row);
942 942
             },
943 943
             $platformRows
Please login to merge, or discard this patch.
src/Phase/TakeATicket/SongLoader/RclRowMapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@
 block discarded – undo
172 172
 
173 173
         $datastore = $this->dataStore;
174 174
         $instrumentIds = array_map(
175
-            function ($name) use ($datastore) {
175
+            function($name) use ($datastore) {
176 176
                 $instrument = $datastore->fetchInstrumentByName($name);
177 177
                 return $instrument ? $instrument->getId() : null;
178 178
             },
Please login to merge, or discard this patch.