| 123456789101112131415161718 | <?phpdeclare(strict_types=1);namespace Yansongda\Pay\Plugin\Alipay\Trade;use Yansongda\Pay\Plugin\Alipay\GeneralPlugin;/** * @see https://opendocs.alipay.com/open/028sma */class FastRefundQueryPlugin extends GeneralPlugin{    protected function getMethod(): string    {        return 'alipay.trade.fastpay.refund.query';    }}
 |