diff --git a/app/Enums/AutoBudgetType.php b/app/Enums/AutoBudgetType.php new file mode 100644 index 0000000000..bc51521953 --- /dev/null +++ b/app/Enums/AutoBudgetType.php @@ -0,0 +1,31 @@ +. + */ + +namespace FireflyIII\Enums; + +/** + * Enum AutoBudgetType + */ +enum AutoBudgetType: int +{ + case AUTO_BUDGET_RESET = 1; + case AUTO_BUDGET_ROLLOVER = 2; +} \ No newline at end of file diff --git a/app/Models/AutoBudget.php b/app/Models/AutoBudget.php index b7ef5bcbe8..767f00373f 100644 --- a/app/Models/AutoBudget.php +++ b/app/Models/AutoBudget.php @@ -64,11 +64,6 @@ use Illuminate\Support\Carbon; */ class AutoBudget extends Model { - /** @var int When the auto-budget resets every period automatically. */ - public const AUTO_BUDGET_RESET = 1; - /** @var int When the auto-budget adds an amount every period automatically */ - public const AUTO_BUDGET_ROLLOVER = 2; - use SoftDeletes; /**