argument('username'); $oAuthController = new AuthController(); if ($this->confirm("Are you sure that you want to delete the user '{$username}'?")) { $aReturn = $oAuthController->deleteUser($username); if ($aReturn["status"] == "error") { $this->error($aReturn["message"]); } else { $this->info($aReturn["message"]); } } } }