songdb 6 years ago
parent
commit
a965b6269f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/Http/Controllers/Wap/Web/WelfareController.php

+ 2 - 2
app/Http/Controllers/Wap/Web/WelfareController.php

@@ -20,13 +20,13 @@ class WelfareController extends BaseController
         $token = trim($request->input('token'));
         $token = trim($request->input('token'));
         if(!$token)
         if(!$token)
         {
         {
-            return reponse('参数有误');
+            return response('参数有误');
         }
         }
 
 
         $giving = DB::table('book_coin_givings')->where('token',$token)->first();
         $giving = DB::table('book_coin_givings')->where('token',$token)->first();
         if(!$giving)
         if(!$giving)
         {
         {
-            return reponse('参数有误');
+            return response('参数有误');
         }
         }
 
 
         //判断是否结束
         //判断是否结束