jingcai-php/app/Supports/Facades/WechatPay.php

29 lines
502 B
PHP
Executable File

<?php
/**
* Created by PhpStorm
* User: wild
* Date: 2022/3/11
* Time: 11:54 上午
*/
namespace App\Supports\Facades;
use Illuminate\Support\Facades\Facade;
/**
* Class WechatPay
* @method static pay( $outTradeNo, $money, $description, $returnUrl, $currency)
* @package App\Supports\Facades
*/
class WechatPay extends Facade
{
/**
* Get the registered name of the component.
*/
protected static function getFacadeAccessor()
{
return 'wechatpay';
}
}