30 lines
511 B
PHP
Executable File
30 lines
511 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 Alipay
|
|
* @method static pay( $outTradeNo, $money, $description)
|
|
* @method static tradeQuery( $outTradeNo)
|
|
* @package App\Supports\Facades
|
|
*/
|
|
class Alipay extends Facade
|
|
{
|
|
/**
|
|
* Get the registered name of the component.
|
|
*/
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return 'alipay';
|
|
}
|
|
}
|