feat : add RecurrenceType backed enum

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Matthieu
2026-03-19 10:05:40 +01:00
parent aa38e20c00
commit fc6b6587f9

View File

@@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
namespace App\Enum;
enum RecurrenceType: string
{
case Daily = 'daily';
case Weekly = 'weekly';
case Monthly = 'monthly';
case Yearly = 'yearly';
}