123456789101112131415161718 |
- <?php
- declare(strict_types=1);
- namespace Yansongda\Pay\Plugin\Alipay\User;
- use Yansongda\Pay\Plugin\Alipay\GeneralPlugin;
- class AgreementExecutionPlanModifyPlugin extends GeneralPlugin
- {
- protected function getMethod(): string
- {
- return 'alipay.user.agreement.executionplan.modify';
- }
- }
|