| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 65 | public function __construct(string $id, |
||
| 66 | string $firstName, |
||
| 67 | string $lastName, |
||
| 68 | string $email, |
||
| 69 | string $status, |
||
| 70 | string $plainPassword) |
||
| 71 | { |
||
| 72 | $this->id = $id; |
||
| 73 | $this->firstName = $firstName; |
||
| 74 | $this->lastName = $lastName; |
||
| 75 | $this->email = $email; |
||
| 76 | $this->status = $status; |
||
| 77 | $this->plainPassword = $plainPassword; |
||
| 78 | } |
||
| 128 |