| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace App\Http\Controllers\Api\v1;
- use App\Http\Controllers\Api\webApp;
- use App\Services\CregisPayService;
- /**
- * 钱包回调处理
- * Class NotifyController
- * @package App\Http\Controllers\Api\v1
- */
- class NotifyController extends webApp
- {
- /**
- * 提现回调
- * @return string
- */
- public function cregisCallback()
- {
- return CregisPayService::make()->withdrawCallBack();
- }
- /**
- * 充值回调
- * @return string
- */
- public function rechargeCallback()
- {
- return CregisPayService::make()->rechargeCallBack();
- }
- }
|