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.
Test Failed
Push — master ( 766277...6c1e1a )
by Richard
03:05
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->jsonSerialize();
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
@@ -936,7 +936,7 @@  discard block
 block discarded – undo
936 936
 
937 937
         $dbConn = $this;
938 938
         $instruments = array_map(
939
-            function ($row) use ($dbConn) {
939
+            function($row) use ($dbConn) {
940 940
                 return $dbConn->buildInstrumentFromDbRow($row);
941 941
             },
942 942
             $instrumentRows
@@ -959,7 +959,7 @@  discard block
 block discarded – undo
959 959
 
960 960
         $dbConn = $this;
961 961
         $platforms = array_map(
962
-            function ($row) use ($dbConn) {
962
+            function($row) use ($dbConn) {
963 963
                 return $dbConn->buildPlatformFromDbRow($row);
964 964
             },
965 965
             $platformRows
Please login to merge, or discard this patch.