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