Completed
Pull Request — master (#371)
by De Cramer
16:01
created
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.