| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | public function getPage() |
||
| 34 | { |
||
| 35 | $details = $this->getArtistInfo(); |
||
| 36 | |||
| 37 | $albums = array_slice($this->getTopAlbums(), 0, 4); |
||
| 38 | |||
| 39 | $tracks = array_slice($this->getTopTracks(), 0, 10); |
||
| 40 | |||
| 41 | return view('api.lastfm')->withDetails($details) |
||
| 42 | ->withAlbums($albums) |
||
| 43 | ->withTracks($tracks); |
||
| 44 | } |
||
| 45 | |||
| 79 |