Notify.php 278 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\ebapi\controller;
  3. use app\core\logic\Pay;
  4. /**
  5. * 支付回调
  6. * Class Notify
  7. * @package app\ebapi\controller
  8. */
  9. //待完善
  10. class Notify
  11. {
  12. /**
  13. * 支付 异步回调
  14. */
  15. public function notify()
  16. {
  17. Pay::notify();
  18. }
  19. }