NotifyController.php 426 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace App\Http\Controllers\Api\v1;
  3. use App\Http\Controllers\Api\webApp;
  4. use App\Services\CregisPayService;
  5. /**
  6. * 钱包回调处理
  7. * Class NotifyController
  8. * @package App\Http\Controllers\Api\v1
  9. */
  10. class NotifyController extends webApp
  11. {
  12. /**
  13. * 钱包回调
  14. * @return string
  15. */
  16. public function cregisCallback()
  17. {
  18. return CregisPayService::make()->withdrawCallBack();
  19. }
  20. }