employee = $employee; $this->companyId = $companyId; $this->ownerId = $ownerId; $this->amount = $amount; $this->serviceCharge = $serviceCharge; $this->isNoVoucher = $isNoVoucher; $this->isTopUpWallet = $isTopUpWallet; } /** * @return int */ public function getCompanyId(): int { return $this->companyId; } /** * @return int */ public function getOwnerId(): int { return $this->ownerId; } /** * @return float */ public function getAmount(): float { return $this->amount; } /** * @return float */ public function getServiceCharge(): float { return $this->serviceCharge; } /** * @return User */ public function getEmployee(): User { return $this->employee; } /** * @return bool */ public function getIsNoVoucher(): bool { return $this->isNoVoucher; } /** * @return bool */ public function getIsTopUpWallet(): bool { return $this->isTopUpWallet; } }