diff --git a/app/Enums/RecurrenceRepetitionWeekend.php b/app/Enums/RecurrenceRepetitionWeekend.php new file mode 100644 index 0000000000..18092e7f75 --- /dev/null +++ b/app/Enums/RecurrenceRepetitionWeekend.php @@ -0,0 +1,30 @@ +. + */ + +namespace FireflyIII\Enums; + +enum RecurrenceRepetitionWeekend: int +{ + case WEEKEND_DO_NOTHING = 1; + case WEEKEND_SKIP_CREATION = 2; + case WEEKEND_TO_FRIDAY = 3; + case WEEKEND_TO_MONDAY = 4; +} \ No newline at end of file diff --git a/app/Models/RecurrenceRepetition.php b/app/Models/RecurrenceRepetition.php index c5374980b4..519ef28b14 100644 --- a/app/Models/RecurrenceRepetition.php +++ b/app/Models/RecurrenceRepetition.php @@ -62,14 +62,6 @@ use Illuminate\Support\Carbon; */ class RecurrenceRepetition extends Model { - /** @var int */ - public const WEEKEND_DO_NOTHING = 1; - /** @var int */ - public const WEEKEND_SKIP_CREATION = 2; - /** @var int */ - public const WEEKEND_TO_FRIDAY = 3; - /** @var int */ - public const WEEKEND_TO_MONDAY = 4; use SoftDeletes; /**