Routine.php 310 B

12345678910111213141516171819202122
  1. <?php
  2. namespace app\routine\controller;
  3. use service\MiniProgramService;
  4. /**
  5. * 小程序支付回调
  6. * Class Routine
  7. * @package app\routine\controller
  8. */
  9. class Routine
  10. {
  11. /**
  12. * 支付 异步回调
  13. */
  14. public function notify()
  15. {
  16. MiniProgramService::handleNotify();
  17. }
  18. }