Completed
Pull Request — master (#371)
by De Cramer
16:01
created
src/eXpansion/Framework/Core/Services/Application/AbstractApplication.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/eXpansion/Framework/Core/Plugins/AutomaticMatchSettingsSave.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/eXpansion/Framework/Core/Plugins/AutomaticServerSettingsSave.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.