mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
14 lines
173 B
PHP
14 lines
173 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
/**
|
|
* @deprecated server types will be dropped
|
|
*/
|
|
final class ServerType
|
|
{
|
|
const REGULAR = 'regular';
|
|
|
|
const DATABASE = 'database';
|
|
}
|