argument('username'); $password = $this->secret('What is the password?'); $oAuthController = new AuthController(); $aReturn = $oAuthController->createUser($username, $password); if ($aReturn["status"] == "error") { $this->error($aReturn["message"]); } else { $this->info($aReturn["message"]); } } }