mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-01-08 15:31:24 +01:00
23 lines
631 B
PHP
23 lines
631 B
PHP
<?php
|
|
|
|
namespace App\Facades;
|
|
|
|
use App\Services\TwoFAccountService;
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
/**
|
|
* @method static void withdraw(int|array|string $ids)
|
|
* @method \Illuminate\Support\Collection<int|string, \App\Models\TwoFAccount> migrate(string $migrationPayload)
|
|
* @method static \Illuminate\Support\Collection<int, \App\Models\TwoFAccount> export(int|array|string $ids)
|
|
* @method static int delete(int|array|string $ids)
|
|
*
|
|
* @see \App\Services\TwoFAccountService
|
|
*/
|
|
class TwoFAccounts extends Facade
|
|
{
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return TwoFAccountService::class;
|
|
}
|
|
}
|