mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-22 03:02:20 +00:00
12 lines
158 B
PHP
12 lines
158 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
use BenSampo\Enum\Enum;
|
|
|
|
final class ServerType extends Enum
|
|
{
|
|
const REGULAR = 'regular';
|
|
const DATABASE = 'database';
|
|
}
|