@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | foreach ($extensions as $extension => $description) { |
95 | 95 | if (!extension_loaded($extension)) { |
96 | 96 | $console->writeln( |
97 | - "<error>eXpansion needs PHP extension $extension to run. Enable it to run eXpansion => " . $description . "</error>" |
|
97 | + "<error>eXpansion needs PHP extension $extension to run. Enable it to run eXpansion => ".$description."</error>" |
|
98 | 98 | ); |
99 | 99 | $status = false; |
100 | 100 | $showIni = true; |
@@ -107,14 +107,14 @@ discard block |
||
107 | 107 | foreach ($recommend as $extension => $reason) { |
108 | 108 | if (!extension_loaded($extension)) { |
109 | 109 | $console->writeln( |
110 | - "<error>eXpansion works better with PHP extension</error> <info>$extension</info>: " . $reason . "" |
|
110 | + "<error>eXpansion works better with PHP extension</error> <info>$extension</info>: ".$reason."" |
|
111 | 111 | ); |
112 | 112 | $showIni = true; |
113 | 113 | } |
114 | 114 | } |
115 | 115 | |
116 | 116 | if ($showIni) { |
117 | - $console->writeln('<info>[PHP] PHP is using fallowing ini file :</info> "'. php_ini_loaded_file() .'"'); |
|
117 | + $console->writeln('<info>[PHP] PHP is using fallowing ini file :</info> "'.php_ini_loaded_file().'"'); |
|
118 | 118 | sleep(5); |
119 | 119 | } |
120 | 120 | return $status; |
@@ -54,7 +54,7 @@ |
||
54 | 54 | return; |
55 | 55 | } |
56 | 56 | |
57 | - $path = 'MatchSettings/' . $this->fileName->get(); |
|
57 | + $path = 'MatchSettings/'.$this->fileName->get(); |
|
58 | 58 | |
59 | 59 | try { |
60 | 60 | $this->connectionFactory->getConnection()->saveMatchSettings($path); |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | return; |
58 | 58 | } |
59 | 59 | |
60 | - $path = 'Config/' . $this->fileName->get(); |
|
60 | + $path = 'Config/'.$this->fileName->get(); |
|
61 | 61 | $fileSystem = $this->fileSystem->getUserData(); |
62 | 62 | |
63 | 63 | if (!$fileSystem->has($path)) { |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | } |
112 | 112 | $oldXml->server_options->{$search}[0] = $out; |
113 | 113 | } |
114 | - $this->logger->info('Saving server settings to : ' . $path); |
|
114 | + $this->logger->info('Saving server settings to : '.$path); |
|
115 | 115 | $xml = $oldXml->asXML(); |
116 | 116 | |
117 | 117 | $fileSystem->update($path, $xml); |