@@ -31,12 +31,12 @@ |
||
| 31 | 31 | $this->getApplication()->out('<info>Updating server to git HEAD</info>'); |
| 32 | 32 | |
| 33 | 33 | // Pull from remote repo |
| 34 | - $this->runCommand('cd ' . APPROOT . ' && git pull 2>&1'); |
|
| 34 | + $this->runCommand('cd '.APPROOT.' && git pull 2>&1'); |
|
| 35 | 35 | |
| 36 | 36 | $this->getApplication()->out('<info>Updating Composer resources</info>'); |
| 37 | 37 | |
| 38 | 38 | // Run Composer install |
| 39 | - $this->runCommand('cd ' . APPROOT . ' && composer install --no-dev -o -a 2>&1'); |
|
| 39 | + $this->runCommand('cd '.APPROOT.' && composer install --no-dev -o -a 2>&1'); |
|
| 40 | 40 | |
| 41 | 41 | $this->getApplication()->out('<info>Update complete</info>'); |
| 42 | 42 | |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | $this->getApplication()->out('No database found.') |
| 93 | 93 | ->out('Creating the database...', false); |
| 94 | 94 | |
| 95 | - $this->db->setQuery('CREATE DATABASE ' . $this->db->quoteName($this->getApplication()->get('database.name'))) |
|
| 95 | + $this->db->setQuery('CREATE DATABASE '.$this->db->quoteName($this->getApplication()->get('database.name'))) |
|
| 96 | 96 | ->execute(); |
| 97 | 97 | |
| 98 | 98 | $this->db->select($this->getApplication()->get('database.name')); |
@@ -152,7 +152,7 @@ discard block |
||
| 152 | 152 | */ |
| 153 | 153 | private function processSql() : InstallCommand |
| 154 | 154 | { |
| 155 | - $fName = APPROOT . '/etc/mysql.sql'; |
|
| 155 | + $fName = APPROOT.'/etc/mysql.sql'; |
|
| 156 | 156 | |
| 157 | 157 | if (!file_exists($fName)) |
| 158 | 158 | { |