@@ -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->getName(); |
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 |
@@ -914,7 +914,7 @@ discard block |
||
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 |
||
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 |
@@ -172,7 +172,7 @@ |
||
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 | }, |