budget; } /** * @param BudgetModel $budget */ public function setBudget($budget) { $this->budget = $budget; } /** * @return float */ public function getBudgeted() { return $this->budgeted; } /** * @param float $budgeted */ public function setBudgeted($budgeted) { $this->budgeted = $budgeted; } /** * @return float */ public function getLeft() { return $this->left; } /** * @param float $left */ public function setLeft($left) { $this->left = $left; } /** * @return float */ public function getOverspent() { return $this->overspent; } /** * @param float $overspent */ public function setOverspent($overspent) { $this->overspent = $overspent; } /** * @return float */ public function getSpent() { return $this->spent; } /** * @param float $spent */ public function setSpent($spent) { $this->spent = $spent; } /** * @return LimitRepetition */ public function getRepetition() { return $this->repetition; } /** * @param LimitRepetition $repetition */ public function setRepetition($repetition) { $this->repetition = $repetition; } }