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