mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-02-02 19:49:24 +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;
|
||
|
}
|
||
|
}
|