mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-12 18:21:13 +01:00
24 lines
539 B
PHP
24 lines
539 B
PHP
<?php
|
|
|
|
namespace App\Facades;
|
|
|
|
use App\Services\SettingService;
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
/**
|
|
* @method static string|int|boolean|null get($setting)
|
|
* @method static \Illuminate\Support\Collection<string, mixed> all()
|
|
* @method static void set($setting, $value)
|
|
* @method static void delete(string $name)
|
|
* @method static bool isEdited($key)
|
|
*
|
|
* @see \App\Services\SettingService
|
|
*/
|
|
class Settings extends Facade
|
|
{
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return SettingService::class;
|
|
}
|
|
}
|