| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 42 | 1 | public function __construct(?string $firstName = null, |
|
| 43 | ?string $lastName = null, |
||
| 44 | ?string $email = null, |
||
| 45 | ?string $plainPassword = null) |
||
| 46 | { |
||
| 47 | 1 | $this->firstName = $firstName; |
|
| 48 | 1 | $this->lastName = $lastName; |
|
| 49 | 1 | $this->email = $email; |
|
| 50 | 1 | $this->plainPassword = $plainPassword; |
|
| 51 | 1 | } |
|
| 84 | } |