| 123456789101112131415161718192021 |
- <?php
- namespace common\expand\alipay\notify;
- /**
- * 支付宝通知
- */
- class AlipayNotify
- {
- public function __construct()
- {
- }
- public function execute()
- {
- // 通过method确认执行哪个对象
- $method = '';
- // 命名空间的问题
- // 记录每一个事件? 在里面写入需要执行的对象? - 由事件ID作为幂等性? 学习目前支付的方式,使用sql进行记录
- }
- }
|