Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | 3 | public function __construct( |
|
23 | string $firstName, |
||
24 | string $lastName = null, |
||
25 | string $email = null, |
||
26 | string $address = null, |
||
27 | string $group = null |
||
28 | ) { |
||
29 | 3 | $this->firstName = $firstName; |
|
30 | 3 | $this->lastName = $lastName; |
|
31 | 3 | $this->email = $email; |
|
32 | 3 | $this->address = $address; |
|
33 | 3 | $this->group = $group; |
|
34 | 3 | } |
|
59 |