companyId = $companyId; $this->voucherCode = $voucherCode; $this->amount = $amount; $this->user = $user; } /** * @return int */ public function getCompanyId(): int { return $this->companyId; } /** * @return string */ public function getVoucherCode(): string { return $this->voucherCode; } /** * @return float */ public function getAmount(): float { return $this->amount; } /** * @return User */ public function getUser(): User { return $this->user; } }