Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
46 | public function __construct( |
||
47 | string $name, |
||
48 | ?string $mbid, |
||
49 | ?int $tmid, |
||
50 | ?string $sortName, |
||
51 | ?string $disambiguation, |
||
52 | ?string $url |
||
53 | ) { |
||
54 | $this->name = $name; |
||
55 | $this->mbid = $mbid; |
||
56 | $this->tmid = $tmid; |
||
57 | $this->sortName = $sortName; |
||
58 | $this->disambiguation = $disambiguation; |
||
59 | $this->url = $url; |
||
60 | } |
||
61 | |||
107 |