@@ -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 | } |
@@ -96,7 +96,7 @@ |
||
96 | 96 | $pivotData = $data[ORMInterface::PIVOT_DATA]; |
97 | 97 | |
98 | 98 | //Unique row criteria |
99 | - return $pivotData[$this->innerPivotKey] . '.' . $pivotData[$this->outerPivotKey]; |
|
99 | + return $pivotData[$this->innerPivotKey].'.'.$pivotData[$this->outerPivotKey]; |
|
100 | 100 | } |
101 | 101 | |
102 | 102 | } |
103 | 103 | \ No newline at end of file |