@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | |
| 167 | 167 | foreach ($array as $key => $value) |
| 168 | 168 | { |
| 169 | - if(is_string($key) && !is_null($value)) |
|
| 169 | + if (is_string($key) && !is_null($value)) |
|
| 170 | 170 | { |
| 171 | 171 | $formattedValues[] = rawurlencode(sprintf($format, trim($key), trim($value))); |
| 172 | 172 | } |
@@ -243,7 +243,7 @@ discard block |
||
| 243 | 243 | */ |
| 244 | 244 | public function order ($column, $direction = self::DEFAULT_ORDER_DIRECTION) |
| 245 | 245 | { |
| 246 | - $this->queryElements[self::ORDER_KEY][] = rawurlencode($column . " " . $direction); |
|
| 246 | + $this->queryElements[self::ORDER_KEY][] = rawurlencode($column." ".$direction); |
|
| 247 | 247 | |
| 248 | 248 | return $this; |
| 249 | 249 | } |