Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | public function __construct( |
||
25 | string $uuid, |
||
26 | string $username, |
||
27 | string $email, |
||
28 | ?string $password = null, |
||
29 | array $roles = [] |
||
30 | ) { |
||
31 | $this->uuid = $uuid; |
||
32 | $this->username = $username; |
||
33 | $this->email = $email; |
||
34 | $this->password = $password; |
||
35 | $this->roles = $roles; |
||
36 | } |
||
63 |