mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-03 15:02:34 +00:00
* wip * wip * cleanup * notification channels * phpstan * services * remove server types * refactoring * refactoring
15 lines
212 B
PHP
15 lines
212 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class SslStatus
|
|
{
|
|
const string CREATED = 'created';
|
|
|
|
const string CREATING = 'creating';
|
|
|
|
const string DELETING = 'deleting';
|
|
|
|
const string FAILED = 'failed';
|
|
}
|