Completed
Push — master ( 71422b...5978c7 )
by Gabor
03:52
created
src/WebHemi/Form/FormElement.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -163,11 +163,11 @@
 block discarded – undo
163 163
         $name = $this->name;
164 164
 
165 165
         if (isset($this->parentNode)) {
166
-            $name = $this->parentNode->getName() . '[' . $this->name . ']';
166
+            $name = $this->parentNode->getName().'['.$this->name.']';
167 167
         }
168 168
 
169 169
         if (count($this->options) > 1
170
-            && $this->tagName  == self::TAG_SELECT
170
+            && $this->tagName == self::TAG_SELECT
171 171
             && !empty($this->attributes['multiple'])
172 172
         ) {
173 173
             $name .= '[]';
Please login to merge, or discard this patch.