mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-19 18:01:37 +00:00
17 lines
222 B
PHP
17 lines
222 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
use BenSampo\Enum\Enum;
|
|
|
|
final class SslStatus extends Enum
|
|
{
|
|
const CREATED = 'created';
|
|
|
|
const CREATING = 'creating';
|
|
|
|
const DELETING = 'deleting';
|
|
|
|
const FAILED = 'failed';
|
|
}
|