@@ -170,7 +170,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |