mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-22 16:23:18 +01:00
18 lines
283 B
PHP
18 lines
283 B
PHP
<?php
|
|
|
|
namespace App\Facades;
|
|
|
|
use App\Services\SettingService;
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
/**
|
|
* @see \App\Services\SettingService
|
|
*/
|
|
class Settings extends Facade
|
|
{
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return SettingService::class;
|
|
}
|
|
}
|