Completed
Pull Request — master (#87)
by Phecho
03:28
created
app/Http/helpers.php 2 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -16,16 +16,16 @@
 block discarded – undo
16 16
 
17 17
 if (!function_exists('back_url')) {
18 18
 
19
-     /**
20
-     * Create a new previous url.
21
-     *
22
-     * @param  string  $route
23
-     * @param  array   $parameters
24
-     * @param  int     $status
25
-     * @param  array   $headers
26
-     *
27
-     * @return string
28
-     */
19
+        /**
20
+         * Create a new previous url.
21
+         *
22
+         * @param  string  $route
23
+         * @param  array   $parameters
24
+         * @param  int     $status
25
+         * @param  array   $headers
26
+         *
27
+         * @return string
28
+         */
29 29
     function back_url($route, $parameters = [], $status = 302, $headers = [])
30 30
     {
31 31
         if($route !== null && app('url')->previous() == app('url')->full()) {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      */
29 29
     function back_url($route, $parameters = [], $status = 302, $headers = [])
30 30
     {
31
-        if($route !== null && app('url')->previous() == app('url')->full()) {
31
+        if ($route !== null && app('url')->previous() == app('url')->full()) {
32 32
             return app('url')->route($name, $params);
33 33
         }
34 34
 
Please login to merge, or discard this patch.