| Conditions | 2 |
| Paths | 2 |
| Total Lines | 15 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | private function getAmount($amount) |
||
| 20 | { |
||
| 21 | $songs = []; |
||
| 22 | for ($i = 0; $i < $amount; $i++) |
||
| 23 | { |
||
| 24 | $song = new stdClass(); |
||
| 25 | $song->artist = 'Rage Against The Machine'; |
||
| 26 | $song->title = 'Bombtrack'; |
||
| 27 | $song->count = $amount - $i; |
||
| 28 | $song->name = 'Feature'; |
||
| 29 | $songs[] = $song; |
||
| 30 | } |
||
| 31 | |||
| 32 | return $songs; |
||
| 33 | } |
||
| 34 | } |