root 5 years ago
parent
commit
715e0175cf
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/Http/Controllers/TutorialController.php

+ 2 - 2
app/Http/Controllers/TutorialController.php

@@ -20,13 +20,13 @@ class TutorialController extends Controller
         if ($user->expired_at < time()) {
             return response([
                 'data' => false
-            ])
+            ]);
         }
         return response([
             'data' => [
                 'apple_id' => config('v2board.apple_id'),
                 'apple_id_password' => config('v2board.apple_id_password')
             ]
-        ])
+        ]);
     }
 }