Completed
Push — master ( 3cc478...c0e2c7 )
by Song
06:54 queued 04:37
created
src/Widgets/StepForm.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
         $step = $this->steps[$index + 1];
60 60
 
61
-        $nextUrl = $this->url . '?' . http_build_query(compact('step'));
61
+        $nextUrl = $this->url.'?'.http_build_query(compact('step'));
62 62
 
63 63
         return redirect($nextUrl);
64 64
     }
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
 
152 152
         if ($index !== 0) {
153 153
             $step    = $this->steps[$index - 1];
154
-            $prevUrl = request()->fullUrlWithQuery(compact('step'));;
154
+            $prevUrl = request()->fullUrlWithQuery(compact('step')); ;
155 155
             $footer .= "<a href=\"{$prevUrl}\" class=\"btn btn-warning pull-left\">{$trans['prev']}</a>";
156 156
         }
157 157
 
@@ -187,6 +187,6 @@  discard block
 block discarded – undo
187 187
      */
188 188
     public function data()
189 189
     {
190
-        return session()->get('steps.' . $this->current, []);
190
+        return session()->get('steps.'.$this->current, []);
191 191
     }
192 192
 }
193 193
\ No newline at end of file
Please login to merge, or discard this patch.