Passed
Push — master ( fbcfc1...811dca )
by Jan
04:33
created
src/Helpers/Trees/TreeViewNodeState.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,11 +84,11 @@
 block discarded – undo
84 84
             $ret['selected'] = $this->selected;
85 85
         }
86 86
 
87
-        if($this->disabled !== null) {
87
+        if ($this->disabled !== null) {
88 88
             $ret['disabled'] = $this->disabled;
89 89
         }
90 90
 
91
-        if($this->expanded !== null) {
91
+        if ($this->expanded !== null) {
92 92
             $ret['expanded'] = $this->expanded;
93 93
         }
94 94
 
Please login to merge, or discard this patch.
src/Helpers/Trees/TreeViewNode.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -216,19 +216,19 @@
 block discarded – undo
216 216
             'text' => $this->text
217 217
         ];
218 218
 
219
-        if($this->href !== null) {
219
+        if ($this->href !== null) {
220 220
             $ret['href'] = $this->href;
221 221
         }
222 222
 
223
-        if($this->tags !== null) {
223
+        if ($this->tags !== null) {
224 224
             $ret['tags'] = $this->tags;
225 225
         }
226 226
 
227
-        if($this->nodes !== null) {
227
+        if ($this->nodes !== null) {
228 228
             $ret['nodes'] = $this->nodes;
229 229
         }
230 230
 
231
-        if($this->state !== null) {
231
+        if ($this->state !== null) {
232 232
             $ret['state'] = $this->state;
233 233
         }
234 234
 
Please login to merge, or discard this patch.