amount = $amount; $this->type = (int)$type; } /** * @return float */ public function getAmount() { return $this->amount; } /** * @return int */ public function getType() { return $this->type; } /** * @return array */ public function toArray() { return [ 'amount' => $this->getAmount(), 'type' => $this->getType(), ]; } }