@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | $this->config_path = $config_path; |
| 54 | 54 | $this->php_ext = $php_ext; |
| 55 | 55 | |
| 56 | - $this->config_template = __DIR__.'/default.config'; |
|
| 56 | + $this->config_template = __DIR__ . '/default.config'; |
|
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | /** |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | $config_file = $this->get_config_file(); |
| 103 | 103 | $test_line = file($config_file)[1]; |
| 104 | 104 | |
| 105 | - if (false === strpos($test_line, 'Sitemaker '.$this->config_version)) |
|
| 105 | + if (false === strpos($test_line, 'Sitemaker ' . $this->config_version)) |
|
| 106 | 106 | { |
| 107 | 107 | $curr_settings = []; |
| 108 | 108 | |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | */ |
| 167 | 167 | protected function get_config_file() |
| 168 | 168 | { |
| 169 | - $config_file = $this->config_path.'config.'.$this->php_ext; |
|
| 169 | + $config_file = $this->config_path . 'config.' . $this->php_ext; |
|
| 170 | 170 | |
| 171 | 171 | if (!$this->filesystem->exists($config_file)) |
| 172 | 172 | { |