staffmanager/app/Facades/Options.php

24 lines
549 B
PHP
Raw Normal View History

2020-08-30 22:06:01 +00:00
<?php
namespace App\Facades;
use \Illuminate\Support\Facades\Facade;
use phpDocumentor\Reflection\Types\Boolean;
2020-08-30 22:06:01 +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
}
}