forked from miguel456/rbrecruiter
24 lines
549 B
PHP
24 lines
549 B
PHP
<?php
|
|
|
|
|
|
namespace App\Facades;
|
|
use \Illuminate\Support\Facades\Facade;
|
|
use phpDocumentor\Reflection\Types\Boolean;
|
|
|
|
/**
|
|
* 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)
|
|
*/
|
|
class Options extends Facade
|
|
{
|
|
public static function getFacadeAccessor()
|
|
{
|
|
return 'smOptions';
|
|
}
|
|
}
|