Completed
Push — master ( 3be2b4...9bcc1d )
by Paweł
02:33
created
src/Helpers/Url.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     {
33 33
         $encodedUrl = preg_replace_callback(
34 34
             '%[^:/@?&=#]+%usD',
35
-            function ($matches) {
35
+            function($matches) {
36 36
                 return rawurlencode($matches[0]);
37 37
             },
38 38
             $url
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
         if (true === isset($url['query']) && true === is_string($url['query']) && '' !== $url['query']) {
88 88
             parse_str($url['query'], $query);
89
-            array_walk($query, function (&$val, &$var) {
89
+            array_walk($query, function(&$val, &$var) {
90 90
                 $var = rawurlencode($var);
91 91
                 $val = rawurlencode($val);
92 92
             });
Please login to merge, or discard this patch.