entity = $entity; $this->amount = $amount; $this->reason = (int) $regainReason; } /** * @return float */ public function getAmount(){ return $this->amount; } /** * @param float $amount */ public function setAmount($amount){ $this->amount = $amount; } public function getRegainReason(){ return $this->reason; } }