19 lines
319 B
PHP
19 lines
319 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Yansongda\Pay\Plugin\Alipay\Trade;
|
|
|
|
use Yansongda\Pay\Plugin\Alipay\GeneralPlugin;
|
|
|
|
/**
|
|
* @see https://opendocs.alipay.com/open/02o6e7
|
|
*/
|
|
class ClosePlugin extends GeneralPlugin
|
|
{
|
|
protected function getMethod(): string
|
|
{
|
|
return 'alipay.trade.close';
|
|
}
|
|
}
|