| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 17 | public function __construct( |
||
| 18 | UserUuid $uuid, |
||
| 19 | NameField $username, |
||
| 20 | EmailField $email, |
||
| 21 | string $password, |
||
| 22 | array $roles = [] |
||
| 23 | ) { |
||
| 24 | $this->uuid = $uuid->toString(); |
||
| 25 | $this->username = $username->getValue(); |
||
| 26 | $this->email = $email->getValue(); |
||
| 27 | $this->password = $password; |
||
| 28 | $this->roles = $roles; |
||
| 29 | } |
||
| 94 |