mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-03 23:12:35 +00:00
* wip * wip * cleanup * notification channels * phpstan * services * remove server types * refactoring * refactoring
11 lines
136 B
PHP
11 lines
136 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class SslType
|
|
{
|
|
const string LETSENCRYPT = 'letsencrypt';
|
|
|
|
const string CUSTOM = 'custom';
|
|
}
|