d2d.emegrendeles.hu/app/Enums/OrderType.php
E98Developer 68b7c35bef git init
2026-02-28 06:53:05 +01:00

17 lines
225 B
PHP

<?php
namespace App\Enums;
use BenSampo\Enum\Enum;
/**
* @method static static daily()
* @method static static weekly()
*/
final class OrderType extends Enum
{
const daily = 'daily';
const weekly = 'weekly';
}