reference = $reference; $this->phone = $phone; $this->email = $email; $this->wechat_id = $wechat_id; } /** * @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 getOwnerId(): int // { // return $this->owner_id; // } // /** // * @return string // */ // public function getOwnerType(): string // { // return $this->owner_type; // } }