feat(overrides): add override functionality to Options

Signed-off-by: miguel456 <me@nogueira.codes>
This commit is contained in:
2023-06-29 17:20:41 +01:00
parent 68b60bd3f3
commit 05e2cd4f82
6 changed files with 963 additions and 784 deletions

23
app/Enums/Overrides.php Normal file
View 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;
}