employee = $employee; $this->companyId = $companyId; $this->transactionId = $transactionId; $this->amount = $amount; $this->isNoVoucher = $isNoVoucher; $this->isTopUpWallet = $isTopUpWallet; } /** * @return int */ public function getCompanyId(): int { return $this->companyId; } /** * @return int */ public function getTransactionId(): int { return $this->transactionId; } /** * @return float */ public function getAmount(): float { return $this->amount; } /** * @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; } }