laravel-package-skeleton/src/SkeletonFacade.php

22 lines
382 B
PHP
Raw Normal View History

2022-08-20 16:01:10 +00:00
<?php
declare(strict_types=1);
namespace GertjanKrol\Skeleton;
use Illuminate\Support\Facades\Facade;
/**
* @see \GertjanKrol\Skeleton\Skeleton
*/
class SkeletonFacade extends Facade
{
/**
* Get the registered name of the component.
*/
protected static function getFacadeAccessor(): string
{
return SkeletonServiceProvider::PACKAGE_NAME;
}
}