@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | if ($this->customThroughKeyCallback) { |
154 | 154 | $columns[] = ($this->customThroughKeyCallback)($alias); |
155 | 155 | } else { |
156 | - $columns[] = $this->getQualifiedFirstKeyName() . " as $alias"; |
|
156 | + $columns[] = $this->getQualifiedFirstKeyName()." as $alias"; |
|
157 | 157 | } |
158 | 158 | |
159 | 159 | if ($this->hasLeadingCompositeKey()) { |
@@ -185,7 +185,7 @@ discard block |
||
185 | 185 | } |
186 | 186 | |
187 | 187 | foreach ($columns as $column) { |
188 | - $this->query->withoutGlobalScope(__CLASS__ . ":$column"); |
|
188 | + $this->query->withoutGlobalScope(__CLASS__.":$column"); |
|
189 | 189 | } |
190 | 190 | |
191 | 191 | return $this; |
@@ -33,7 +33,7 @@ |
||
33 | 33 | ); |
34 | 34 | } |
35 | 35 | |
36 | - $table = $throughParent->getTable() . ' as ' . $this->getRelationCountHash(); |
|
36 | + $table = $throughParent->getTable().' as '.$this->getRelationCountHash(); |
|
37 | 37 | |
38 | 38 | $throughParent->setTable($table); |
39 | 39 |