20 lines
290 B
PHP
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';
|
|
}
|