Implement Keystone environment deployments
This commit is contained in:
17
app/Enums/EnvironmentAttachmentRole.php
Normal file
17
app/Enums/EnvironmentAttachmentRole.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
use App\Enums\Concerns\Arrayable;
|
||||
|
||||
enum EnvironmentAttachmentRole: string
|
||||
{
|
||||
use Arrayable;
|
||||
|
||||
case DATABASE = 'database';
|
||||
case CACHE = 'cache';
|
||||
case QUEUE = 'queue';
|
||||
case STORAGE = 'storage';
|
||||
case GATEWAY = 'gateway';
|
||||
case CUSTOM = 'custom';
|
||||
}
|
||||
Reference in New Issue
Block a user