소스 검색

Add return true / flase

LogischJo 4 년 전
부모
커밋
22a59fcf58
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      app/Console/Commands/createUser.php

+ 2 - 1
app/Console/Commands/createUser.php

@@ -51,7 +51,7 @@ class createUser extends Command
         if (is_null($response)) {
             print_r('It seems that your Pterodactyl ID isnt correct. Rerun the command and input an correct ID');
 
-            return;
+            return false;
         };
 
         $user = User::create([
@@ -69,5 +69,6 @@ class createUser extends Command
             ['Ptero-ID', $user->pterodactyl_id],
             ['Admin', $user->role],
         ]);
+        return true;
     }
 }