nullableFields = [ ...$this->nullableFields, 'mobile', ]; } public function getID(): string { return $this->id; } public function getPassword(): string { return $this->passwd; } public function getRole(): string { return $this->role; } public function getEmail(): string { return $this->email; } public function getMobile(): ?string { return $this->mobile; } }