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