mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-01-14 10:18:19 +01:00
14 lines
249 B
PHP
14 lines
249 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Facades;
|
||
|
|
||
|
use App\Services\TwoFAccountService;
|
||
|
use Illuminate\Support\Facades\Facade;
|
||
|
|
||
|
class TwoFAccounts extends Facade
|
||
|
{
|
||
|
protected static function getFacadeAccessor()
|
||
|
{
|
||
|
return TwoFAccountService::class;
|
||
|
}
|
||
|
}
|