| Total Complexity | 2 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | final class ArtistListItem implements JsonSerializable |
||
| 15 | { |
||
| 16 | public function __construct( |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return array{ |
||
|
|
|||
| 24 | * id: int, |
||
| 25 | * artistId: int, |
||
| 26 | * artistName: string, |
||
| 27 | * name: string, |
||
| 28 | * cover: string, |
||
| 29 | * length: int, |
||
| 30 | * year: ?int |
||
| 31 | * } |
||
| 32 | */ |
||
| 33 | public function jsonSerialize(): array |
||
| 44 |