companyId = $companyId; $this->promoCode = $promoCode; $this->amount = $amount; $this->employee = $employee; } /** * @return int */ public function getCompanyId(): int { return $this->companyId; } /** * @return string */ public function getPromoCode(): string { return $this->promoCode; } /** * @return string */ public function getAmount(): string { return $this->amount; } /** * @return object */ public function getEmployee(): object { return $this->employee; } }