mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 02:41:36 +00:00
11 lines
121 B
PHP
11 lines
121 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class ServerType
|
|
{
|
|
const REGULAR = 'regular';
|
|
|
|
const DATABASE = 'database';
|
|
}
|