| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 51 | public function __construct( |
||
| 52 | UuidInterface $id, |
||
| 53 | Email $email, |
||
| 54 | Password $password, |
||
| 55 | NotEmptyString $lastName, |
||
| 56 | NotEmptyString $firstName, |
||
| 57 | Role $role |
||
| 58 | ) { |
||
| 59 | $this->id = $id; |
||
| 60 | $this->email = $email; |
||
| 61 | $this->password = $password; |
||
| 62 | $this->lastName = $lastName; |
||
| 63 | $this->firstName = $firstName; |
||
| 64 | $this->role = $role; |
||
| 65 | } |
||
| 115 |