10 lines
133 B
PHP
10 lines
133 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum ServerProvider: string
|
|
{
|
|
case HETZNER = 'hetzner';
|
|
case DIGITAL_OCEAN = 'digital-ocean';
|
|
}
|