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