Completed
Push — master ( b035c8...ddcf44 )
by Paweł
02:10
created
src/Helpers/Url.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     {
23 23
         $encodedUrl = preg_replace_callback(
24 24
             '%[^:/@?&=#]+%usD',
25
-            function ($matches) {
25
+            function($matches) {
26 26
                 return rawurlencode($matches[0]);
27 27
             },
28 28
             $url
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
         if (!empty($url['query'])) {
66 66
             parse_str($url['query'], $query);
67 67
 
68
-            array_walk($query, function (&$val, &$var) {
68
+            array_walk($query, function(&$val, &$var) {
69 69
                 $var = rawurlencode($var);
70 70
                 $val = rawurlencode($val);
71 71
             });
Please login to merge, or discard this patch.
src/Items/AbstractItem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@
 block discarded – undo
138 138
      */
139 139
     public function __call($name, $arguments)
140 140
     {
141
-        $operation = substr($name, 0 ,3);
141
+        $operation = substr($name, 0, 3);
142 142
         $property = lcfirst(substr($name, 3));
143 143
 
144 144
         if (property_exists($this, $property) &&
Please login to merge, or discard this patch.