Some PhpStorm cleanup

This commit is contained in:
Dylan K. Taylor
2017-02-12 12:36:02 +00:00
parent 5a12f40074
commit 8f9c52507a
5 changed files with 3 additions and 9 deletions

View File

@ -58,13 +58,13 @@ class Installer{
$this->lang = new InstallerLang($lang);
echo "[*] " . $this->lang->language_has_been_selected . "\n";
echo "[*] " . $this->lang->get("language_has_been_selected") . "\n";
if(!$this->showLicense()){
return false;
}
echo "[?] " . $this->lang->skip_installer . " (y/N): ";
echo "[?] " . $this->lang->get("skip_installer") . " (y/N): ";
if(strtolower($this->getInput()) === "y"){
return true;
}