1234567891011121314151617181920 |
- <?php
- namespace App\Repositories\Contracts;
- /**
- *
- * @author lilin
- *
- */
- interface WxNotificationInterface
- {
- const TYPENAME = '微信主动通知 ';
-
- /**
- * 接收到通知,进行处理
- *
- * @param string $xml
- */
- public function getNotification(string $xml, $request);
- }
|