WxNotificationInterface.php 319 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Repositories\Contracts;
  3. /**
  4. *
  5. * @author lilin
  6. *
  7. */
  8. interface WxNotificationInterface
  9. {
  10. const TYPENAME = '微信主动通知 ';
  11. /**
  12. * 接收到通知,进行处理
  13. *
  14. * @param string $xml
  15. */
  16. public function getNotification(string $xml, $request);
  17. }