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