15 lines
257 B
PHP
15 lines
257 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
use App\Enums\Concerns\Arrayable;
|
|
|
|
enum BuildStrategy: string
|
|
{
|
|
use Arrayable;
|
|
|
|
case TARGET_SERVER = 'target_server';
|
|
case DEDICATED_BUILDER = 'dedicated_builder';
|
|
case EXTERNAL_REGISTRY = 'external_registry';
|
|
}
|