mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-17 17:01:37 +00:00
21 lines
283 B
PHP
21 lines
283 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
use BenSampo\Enum\Enum;
|
|
|
|
final class ServerProvider extends Enum
|
|
{
|
|
const CUSTOM = 'custom';
|
|
|
|
const AWS = 'aws';
|
|
|
|
const LINODE = 'linode';
|
|
|
|
const DIGITALOCEAN = 'digitalocean';
|
|
|
|
const VULTR = 'vultr';
|
|
|
|
const HETZNER = 'hetzner';
|
|
}
|