laravel-package-skeleton/src/SkeletonFacade.php

22 lines
351 B
PHP
Raw Permalink Normal View History

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