email = $email; $this->phone = $phone; $this->companyType = $companyType; } /** * @return null|string */ public function getEmail(): ?string { return $this->email; } /** * @return string */ public function getPhone(): string { return $this->phone; } /** * @return int */ public function getCompanyType(): int { return $this->companyType; } }