mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-23 08:43:19 +01:00
15 lines
250 B
PHP
15 lines
250 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;
|
|
}
|
|
}
|