Browse Source

Weenier 168otc项目部署 0630

wesmiler 3 years ago
parent
commit
9bed898efd

+ 0 - 7
app/Http/Controllers/Api/IndexController.php

@@ -20,13 +20,6 @@ use App\Services\UsdtWalletService;
  */
 class IndexController extends webApp
 {
-    /**
-     * IndexController constructor.
-     */
-    public function __construct()
-    {
-
-    }
 
     /**
      * 首页数据

+ 1 - 0
app/Http/Controllers/Api/LoginController.php

@@ -21,6 +21,7 @@ class LoginController extends webApp
      */
     public function __construct()
     {
+        parent::__construct();
         $this->service = new MemberService();
     }
 

+ 1 - 0
app/Http/Controllers/Api/WalletController.php

@@ -18,6 +18,7 @@ class WalletController extends webApp
 
     public function __construct()
     {
+        parent::__construct();
         $this->service = new MemberWalletService();
     }