| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 92 | public function toArray(): array |
||
| 93 | { |
||
| 94 | return [ |
||
| 95 | 'artist' => $this->artist, |
||
| 96 | 'track' => $this->track, |
||
| 97 | 'album' => $this->album, |
||
| 98 | 'trackNumber' => $this->trackNumber, |
||
| 99 | 'context' => $this->context, |
||
| 100 | 'mbid' => $this->mbid, |
||
| 101 | 'duration' => $this->duration, |
||
| 102 | 'albumArtist' => $this->albumArtist, |
||
| 103 | ]; |
||
| 104 | } |
||
| 105 | } |
||
| 106 |