| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 54 | protected function __construct( |
||
| 55 | string $id, |
||
| 56 | string $fullName, |
||
| 57 | string $username, |
||
| 58 | string $email, |
||
| 59 | string $mobile, |
||
| 60 | string $password, |
||
| 61 | string $type |
||
| 62 | ) { |
||
| 63 | $this->id = $id; |
||
| 64 | $this->fullName = $fullName; |
||
| 65 | $this->username = $username; |
||
| 66 | $this->email = $email; |
||
| 67 | $this->mobile = $mobile; |
||
| 68 | $this->password = $password; |
||
| 69 | $this->type = $type; |
||
| 70 | } |
||
| 71 | |||
| 107 |