CustomsFacade.php
370 字节
<?php
namespace Lackoxygen\Customs\Facade;
use Illuminate\Support\Facades\Facade;
use Lackoxygen\Customs\Customs;
/**
* Class CustomsFacade
*
* @method static report(callable $func)
*/
class CustomsFacade extends Facade
{
/**
* @return string
*/
protected static function getFacadeAccessor(): string
{
return Customs::class;
}
}