@@ -38,7 +38,7 @@ |
||
| 38 | 38 | |
| 39 | 39 | if ($minify) { |
| 40 | 40 | //Let's use column number instead of full name |
| 41 | - $column = 'c' . count($columns); |
|
| 41 | + $column = 'c'.count($columns); |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | $columns[] = "{$alias}.{$name} AS {$prefix}{$column}"; |
@@ -105,7 +105,7 @@ |
||
| 105 | 105 | */ |
| 106 | 106 | public function primaryKey(): string |
| 107 | 107 | { |
| 108 | - return $this->getAlias() . '.' . $this->schema[Record::SH_PRIMARY_KEY]; |
|
| 108 | + return $this->getAlias().'.'.$this->schema[Record::SH_PRIMARY_KEY]; |
|
| 109 | 109 | } |
| 110 | 110 | |
| 111 | 111 | /** |
@@ -163,7 +163,7 @@ |
||
| 163 | 163 | foreach ($aliases as $property => $alias) { |
| 164 | 164 | if (isset($userOptions[$property])) { |
| 165 | 165 | //Let's create some default options based on user specified values |
| 166 | - $proposed['option:' . $alias] = $userOptions[$property]; |
|
| 166 | + $proposed['option:'.$alias] = $userOptions[$property]; |
|
| 167 | 167 | } |
| 168 | 168 | } |
| 169 | 169 | |
@@ -131,7 +131,7 @@ discard block |
||
| 131 | 131 | $args[0] = $this->prepare($args[0]); |
| 132 | 132 | |
| 133 | 133 | //Routing where |
| 134 | - call_user_func_array([$this->query, 'and' . ucfirst($this->target)], $args); |
|
| 134 | + call_user_func_array([$this->query, 'and'.ucfirst($this->target)], $args); |
|
| 135 | 135 | |
| 136 | 136 | return $this; |
| 137 | 137 | } |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | $args[0] = $this->prepare($args[0]); |
| 161 | 161 | |
| 162 | 162 | //Routing where |
| 163 | - call_user_func_array([$this->query, 'or' . ucfirst($this->target)], $args); |
|
| 163 | + call_user_func_array([$this->query, 'or'.ucfirst($this->target)], $args); |
|
| 164 | 164 | |
| 165 | 165 | return $this; |
| 166 | 166 | } |