Passed
Push — main ( 8fe4a9...23f062 )
by Stefan
03:16
created
SKien/Formgenerator/FormCKEdit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -181,7 +181,7 @@
 block discarded – undo
181 181
         // TODO: explain differences when using FormInput::SET_JSON_DATA
182 182
         if (($this->wFlags & self::SET_JSON_DATA) != 0) {
183 183
             $strJsonData = $this->oFG->oData->getValue($this->strName);
184
-            if (strlen($strJsonData) > 0 ) {
184
+            if (strlen($strJsonData) > 0) {
185 185
                 $strScript .= PHP_EOL;
186 186
                 $strScript .= '    editor.setData(' . json_encode($strJsonData, JSON_PRETTY_PRINT) . ');' . PHP_EOL;
187 187
             }
Please login to merge, or discard this patch.
SKien/Formgenerator/FormTextArea.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      */
45 45
     public function getHTML() : string
46 46
     {
47
-        $strHTML  = $this->buildContainerDiv();
47
+        $strHTML = $this->buildContainerDiv();
48 48
         
49 49
         $this->strID = $this->strID ?: $this->strName;
50 50
         
Please login to merge, or discard this patch.
SKien/Formgenerator/ArrayFormData.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@
 block discarded – undo
16 16
      */
17 17
     public function __construct(array $aData, array $aSelectOptions = [])
18 18
     {
19
-       $this->aValues = $aData;
20
-       $this->aSelectOptions = $aSelectOptions;
19
+        $this->aValues = $aData;
20
+        $this->aSelectOptions = $aSelectOptions;
21 21
     }
22 22
 }
23 23
 
Please login to merge, or discard this patch.
SKien/Formgenerator/FormInput.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@
 block discarded – undo
134 134
     public function getHTML() : string
135 135
     {
136 136
         $this->setSize();
137
-        $strHTML  = $this->buildContainerDiv();
137
+        $strHTML = $this->buildContainerDiv();
138 138
         
139 139
         $this->strID = $this->strID ?: $this->strName;
140 140
         
Please login to merge, or discard this patch.