22 lines
370 B
PHP
22 lines
370 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace GKcld\Skeleton;
|
||
|
|
||
|
use Illuminate\Support\Facades\Facade;
|
||
|
|
||
|
/**
|
||
|
* @see \GKcld\Skeleton\Skeleton
|
||
|
*/
|
||
|
class SkeletonFacade extends Facade
|
||
|
{
|
||
|
/**
|
||
|
* Get the registered name of the component.
|
||
|
*/
|
||
|
protected static function getFacadeAccessor(): string
|
||
|
{
|
||
|
return SkeletonServiceProvider::PACKAGE_NAME;
|
||
|
}
|
||
|
}
|