mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-08 01:14:29 +01:00
15 lines
238 B
PHP
15 lines
238 B
PHP
<?php
|
|
|
|
namespace App\Facades;
|
|
|
|
use App\Services\SettingService;
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
class Settings extends Facade
|
|
{
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return SettingService::class;
|
|
}
|
|
}
|