Completed
Pull Request — master (#219)
by De Cramer
05:06
created
src/eXpansion/Framework/Core/Plugins/Gui/ScriptVariableUpdateFactory.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -119,15 +119,15 @@
 block discarded – undo
119 119
     {
120 120
         $scriptContent = '';
121 121
         foreach ($this->variables as $variable) {
122
-            $scriptContent .= $variable->getScriptDeclaration() . "\n";
122
+            $scriptContent .= $variable->getScriptDeclaration()."\n";
123 123
             if ($defaultValues) {
124
-                $scriptContent .= $variable->getScriptValueSet() . "\n";
124
+                $scriptContent .= $variable->getScriptValueSet()."\n";
125 125
             }
126 126
         }
127
-        $scriptContent .= $this->checkVariable->getScriptDeclaration() . "\n";
127
+        $scriptContent .= $this->checkVariable->getScriptDeclaration()."\n";
128 128
         if ($defaultValues) {
129
-            $scriptContent .= $this->checkVariable->getScriptValueSet() . "\n";
130
-            $scriptContent .= $this->checkVariable->getVariableName() . '_Old = "";';
129
+            $scriptContent .= $this->checkVariable->getScriptValueSet()."\n";
130
+            $scriptContent .= $this->checkVariable->getVariableName().'_Old = "";';
131 131
         }
132 132
 
133 133
         return $scriptContent;
Please login to merge, or discard this patch.