companyId = $companyId; $this->reference = $reference; $this->phone = $phone; $this->email = $email; $this->wechat_id = $wechat_id; $this->countryId = $countryId; } /** * @return int */ public function getCompanyId(): int { return $this->companyId; } /** * @return string */ public function getReference(): string { return $this->reference; } /** * @return null|string */ public function getPhone(): ?string { return $this->phone; } /** * @return null|string */ public function getEmail(): ?string { return $this->email; } /** * @return null|string */ public function getWechatId(): ?string { return $this->wechat_id; } /** * @return int */ public function getCountryId(): int { return $this->countryId; } }