mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 12:11:08 -04:00
19 lines
324 B
PHP
19 lines
324 B
PHP
<?php
|
|
|
|
namespace Crater\Services\Module;
|
|
|
|
use Illuminate\Support\Facades\Facade as BaseFacade;
|
|
|
|
class ModuleFacade extends BaseFacade
|
|
{
|
|
/**
|
|
* Get the registered name of the component.
|
|
*
|
|
* @return string
|
|
*/
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return Module::class;
|
|
}
|
|
}
|