companyId = $companyId; $this->user = $user; $this->isNew = $isNew; $this->acquisitionChannel = $acquisitionChannel; } /** * @return int */ public function getCompanyId(): int { return $this->companyId; } /** * @return User */ public function getUser(): User { return $this->user; } /** * @return bool */ public function getIsNew(): bool { return $this->isNew; } /** * @return string */ public function getAcquisitionChannel(): string { return $this->acquisitionChannel; } }