vito/app/Enums/SslStatus.php
2024-03-17 12:26:48 +01:00

15 lines
184 B
PHP

<?php
namespace App\Enums;
final class SslStatus
{
const CREATED = 'created';
const CREATING = 'creating';
const DELETING = 'deleting';
const FAILED = 'failed';
}