Files
growup-crm/packages/Webkul/Admin/src/Facades/Bouncer.php
2026-02-02 15:31:15 -03:00

19 lines
295 B
PHP
Executable File

<?php
namespace Webkul\Admin\Facades;
use Illuminate\Support\Facades\Facade;
class Bouncer extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'bouncer';
}
}