16 lines
265 B
PHP
16 lines
265 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace Yansongda\Pay\Plugin\Alipay\Trade;
|
||
|
|
|
||
|
|
use Yansongda\Pay\Plugin\Alipay\GeneralPlugin;
|
||
|
|
|
||
|
|
class CancelPlugin extends GeneralPlugin
|
||
|
|
{
|
||
|
|
protected function getMethod(): string
|
||
|
|
{
|
||
|
|
return 'alipay.trade.cancel';
|
||
|
|
}
|
||
|
|
}
|