MinPaymentFacade.php 661 字节
<?php

namespace Lackoxygen\MinPayment\Facade;

use Illuminate\Support\Facades\Facade;
use Lackoxygen\MinPayment\Contract\ResponseInterface;
use Lackoxygen\MinPayment\MinPayment;

/**
 * @method static ResponseInterface identifyOrder(\Closure $closure)
 * @method static ResponseInterface customsOrder(\Closure $closure)
 * @method static ResponseInterface customsQuery(\Closure $closure)
 * @method static ResponseInterface verify(array $input, string $signName = 'sign')
 */
class MinPaymentFacade extends Facade
{
    /**
     * @return string
     */
    protected static function getFacadeAccessor(): string
    {
        return MinPayment::class;
    }
}