Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
56 | public function __construct( |
||
57 | string $name, |
||
58 | ?string $country, |
||
59 | ?int $age, |
||
60 | ?string $gender, |
||
61 | int $playcount, |
||
62 | ?string $url |
||
63 | ) { |
||
64 | $this->name = $name; |
||
65 | $this->country = $country; |
||
66 | $this->age = $age; |
||
67 | $this->gender = $gender; |
||
68 | $this->playcount = $playcount; |
||
69 | $this->url = $url; |
||
70 | } |
||
71 | |||
137 |