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

20 lines
290 B
PHP

<?php
namespace App\Enums;
use BenSampo\Enum\Enum;
/**
* @method static static pdf()
* @method static static excel()
* @method static static none()
*/
final class EmailAttachmentTypeEnum extends Enum
{
const pdf = 'pdf';
const excel = 'excel';
const nincs = 'nincs';
}