Completed
Pull Request — master (#189)
by Alexander
12:53
created
src/GridInputProcessor.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      */
68 68
     public function getSorting()
69 69
     {
70
-        return $_ =& $this->input['sort'];
70
+        return $_ = & $this->input['sort'];
71 71
     }
72 72
 
73 73
     public function getSortingHiddenInputsHtml()
@@ -95,11 +95,11 @@  discard block
 block discarded – undo
95 95
         $cookies_str = '';
96 96
         foreach ($_COOKIE as $key => $val) {
97 97
             if (strpos($key, $this->getKey()) !== false) {
98
-                $cookies_str .= $key . json_encode($val);
98
+                $cookies_str .= $key.json_encode($val);
99 99
             }
100 100
         }
101 101
 
102
-        return md5($cookies_str . $this->getKey() . json_encode($this->getInput()));
102
+        return md5($cookies_str.$this->getKey().json_encode($this->getInput()));
103 103
     }
104 104
 
105 105
     /**
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
     public function getUrl(array $new_params = [])
191 191
     {
192 192
         if (null !== $query_string = $this->getQueryString($new_params)) {
193
-            $query_string = '?' . $query_string;
193
+            $query_string = '?'.$query_string;
194 194
         }
195 195
         return $query_string;
196 196
     }
Please login to merge, or discard this patch.