2020-08-30 22:06:01 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
namespace App\Facades;
|
|
|
|
use \Illuminate\Support\Facades\Facade;
|
2020-10-09 22:55:46 +00:00
|
|
|
use phpDocumentor\Reflection\Types\Boolean;
|
2020-08-30 22:06:01 +00:00
|
|
|
|
2020-10-09 22:55:46 +00:00
|
|
|
/**
|
|
|
|
* Class Options
|
|
|
|
* @package App\Facades
|
|
|
|
*
|
|
|
|
* @method static void setOption(string $option, string $value, string $description)
|
|
|
|
* @method static string getOption(string $option)
|
|
|
|
* @method static void changeOption(string $option, string $newValue)
|
|
|
|
* @method static Boolean optionExists(string $option)
|
|
|
|
*/
|
2020-08-30 22:06:01 +00:00
|
|
|
class Options extends Facade
|
|
|
|
{
|
|
|
|
public static function getFacadeAccessor()
|
|
|
|
{
|
2020-08-31 15:41:01 +00:00
|
|
|
return 'smOptions';
|
2020-08-30 22:06:01 +00:00
|
|
|
}
|
|
|
|
}
|