Completed
Branch origin/dev-master (b236f6)
by Derek Stephen
09:13
created
src/Field/Text.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         $stringTrim = new FilterAdapterZf(new StringTrim());
30 30
         $stripTags = new FilterAdapterZf(new StripTags());
31 31
         $this->addFilter($stringTrim)
32
-             ->addFilter($stripTags);
32
+                ->addFilter($stripTags);
33 33
     }
34 34
 
35 35
     /**
Please login to merge, or discard this patch.
src/Renderer/Field/CheckboxRender.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
 
104 104
         $radio = $this->getDom()->createElement('input');
105 105
         $radio->setAttribute('type', 'checkbox');
106
-        $fieldName = $this->isMultiCheckbox ? $field->getName() . '[]' : $field->getName();
106
+        $fieldName = $this->isMultiCheckbox ? $field->getName().'[]' : $field->getName();
107 107
         $radio->setAttribute('name', $fieldName);
108 108
         $radio->setAttribute('value', $value);
109 109
         $text = $this->createText($labelText);
Please login to merge, or discard this patch.