mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-01-23 22:58:35 +01:00
18 lines
290 B
PHP
18 lines
290 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Facades;
|
||
|
|
||
|
use App\Services\IconStoreService;
|
||
|
use Illuminate\Support\Facades\Facade;
|
||
|
|
||
|
/**
|
||
|
* @see \App\Services\IconStoreService
|
||
|
*/
|
||
|
class IconStore extends Facade
|
||
|
{
|
||
|
protected static function getFacadeAccessor()
|
||
|
{
|
||
|
return IconStoreService::class;
|
||
|
}
|
||
|
}
|