feat(overrides): add override functionality to Options
Signed-off-by: miguel456 <me@nogueira.codes>
This commit is contained in:
23
app/Enums/Overrides.php
Normal file
23
app/Enums/Overrides.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum Overrides:int
|
||||
{
|
||||
|
||||
/**
|
||||
* Pass control to app settings
|
||||
*/
|
||||
case control = 0;
|
||||
|
||||
/**
|
||||
* Forcefully enable feature
|
||||
*/
|
||||
case forceEnable = 1;
|
||||
|
||||
/**
|
||||
* Forcefully disable feature
|
||||
*/
|
||||
case killSwitch = 2;
|
||||
|
||||
}
|
Reference in New Issue
Block a user