@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | |
| 40 | 40 | protected function configure() |
| 41 | 41 | { |
| 42 | - if(!$this->musicInfo) { |
|
| 42 | + if (!$this->musicInfo) { |
|
| 43 | 43 | $this->initializeMusicInfo(); |
| 44 | 44 | } |
| 45 | 45 | |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | { |
| 61 | 61 | $table->setHeaders(array_values($columns)); |
| 62 | 62 | |
| 63 | - foreach($collection as $service => $serviceResult) { |
|
| 63 | + foreach ($collection as $service => $serviceResult) { |
|
| 64 | 64 | $table = $this->generateTableRows($serviceResult, $columns, $table); |
| 65 | 65 | } |
| 66 | 66 | |
@@ -76,10 +76,10 @@ discard block |
||
| 76 | 76 | */ |
| 77 | 77 | protected function generateTableRows($collection, $columns, Table $table) |
| 78 | 78 | { |
| 79 | - foreach($collection as $item) { |
|
| 79 | + foreach ($collection as $item) { |
|
| 80 | 80 | $row = []; |
| 81 | 81 | |
| 82 | - foreach($columns as $columnKey => $columnValue) { |
|
| 82 | + foreach ($columns as $columnKey => $columnValue) { |
|
| 83 | 83 | $row[] = $item->getPropertyValue($columnKey); |
| 84 | 84 | } |
| 85 | 85 | |