Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
30 | public function __construct(string $firstName, string $lastName, string $email, ?string $birthday, string $gender, ?string $phoneNumber, ?bool $subscribedToNewsletter) |
||
31 | { |
||
32 | $this->firstName = $firstName; |
||
33 | $this->lastName = $lastName; |
||
34 | $this->email = $email; |
||
35 | $this->birthday = $birthday; |
||
36 | $this->gender = $gender; |
||
37 | $this->phoneNumber = $phoneNumber; |
||
38 | $this->subscribedToNewsletter = $subscribedToNewsletter; |
||
39 | } |
||
40 | |||
83 |