Passed
Push — master ( eb7fd1...0f8989 )
by Greg
06:06
created
app/Http/RequestHandlers/ReportSetupPage.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
                     // Need to know if the user prefers DMY/MDY/YMD so we can validate dates properly.
145 145
                     $dmy = $this->localization_service->dateFormatToOrder(I18N::dateFormat());
146 146
 
147
-                    $attributes       += [
147
+                    $attributes += [
148 148
                         'type'     => 'text',
149 149
                         'value'    => $input['default'],
150 150
                         'dir'      => 'ltr',
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
                 default:
159 159
                     switch ($input['type']) {
160 160
                         case 'text':
161
-                            $attributes       += [
161
+                            $attributes += [
162 162
                                 'type'  => 'text',
163 163
                                 'value' => $input['default'],
164 164
                             ];
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
                             break;
167 167
 
168 168
                         case 'checkbox':
169
-                            $attributes       += [
169
+                            $attributes += [
170 170
                                 'type'    => 'checkbox',
171 171
                                 'checked' => (bool) $input['default'],
172 172
                             ];
Please login to merge, or discard this patch.