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