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