codex基础代码更新

This commit is contained in:
技术老胡
2026-03-20 10:31:13 +08:00
parent 7e545f0621
commit f3919c9899
36 changed files with 5060 additions and 1459 deletions

View File

@@ -6,6 +6,7 @@ namespace app\common\contracts;
use app\exceptions\PaymentException;
use support\Request;
use support\Response;
/**
* 支付插件接口
@@ -81,4 +82,8 @@ interface PaymentInterface
* @throws PaymentException 验签失败、数据异常等
*/
public function notify(Request $request): array;
public function notifySuccess(): string|Response;
public function notifyFail(): string|Response;
}