Conditions | 2 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
102 | public static function fromApi(array $data): self |
||
103 | { |
||
104 | $images = self::createImagesFromApi($data); |
||
105 | |||
106 | return new self( |
||
107 | $data['name'], |
||
108 | $data['artist'] ? Artist::fromApi($data['artist']) : null, |
||
109 | $data['mbid'] ?? null, |
||
110 | $data['url'] ?? null, |
||
111 | $images |
||
112 | ); |
||
113 | } |
||
114 | |||
133 |