Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
40 | 1 | public static function create(string $title = null, string $subtitle = null, Image $art = null, Image $backgroundImage = null): self |
|
41 | { |
||
42 | 1 | $metadata = new self(); |
|
43 | |||
44 | 1 | $metadata->title = $title; |
|
45 | 1 | $metadata->subtitle = $subtitle; |
|
46 | 1 | $metadata->art = $art; |
|
47 | 1 | $metadata->backgroundImage = $backgroundImage; |
|
48 | |||
49 | 1 | return $metadata; |
|
50 | } |
||
75 |