14 lines
224 B
PHP
14 lines
224 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Support\Alerts;
|
|
|
|
enum AlertDestinationLastTestStatusEnum: string
|
|
{
|
|
case Never = 'never';
|
|
case Sent = 'sent';
|
|
case Failed = 'failed';
|
|
case Pending = 'pending';
|
|
}
|