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