Files
Lesstime/src/Enum/RecurrenceType.php
T
Matthieu fc6b6587f9 feat : add RecurrenceType backed enum
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-19 18:10:34 +01:00

14 lines
202 B
PHP

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