CustomsFacade.php 415 字节
<?php

namespace Lackoxygen\Customs\Facade;

use Illuminate\Support\Facades\Facade;
use Lackoxygen\Customs\Customs;
use Lackoxygen\Customs\Request\PayExInfo;

/**
 * Class CustomsFacade
 *
 * @method static report(PayExInfo $exInfo)
 */
class CustomsFacade extends Facade
{
    /**
     * @return string
     */
    protected static function getFacadeAccessor(): string
    {
        return Customs::class;
    }
}