Implement Keystone environment deployments
This commit is contained in:
14
app/Enums/EnvironmentVariableSource.php
Normal file
14
app/Enums/EnvironmentVariableSource.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
use App\Enums\Concerns\Arrayable;
|
||||
|
||||
enum EnvironmentVariableSource: string
|
||||
{
|
||||
use Arrayable;
|
||||
|
||||
case USER = 'user';
|
||||
case MANAGED_ATTACHMENT = 'managed_attachment';
|
||||
case SYSTEM = 'system';
|
||||
}
|
||||
Reference in New Issue
Block a user