@@ -560,7 +560,7 @@ discard block |
||
560 | 560 | */ |
561 | 561 | public function buildColumnName(string $table, string $column): string |
562 | 562 | { |
563 | - return $this->quoteTableName($table) . '.' . $this->quoteColumnName($column); |
|
563 | + return $this->quoteTableName($table).'.'.$this->quoteColumnName($column); |
|
564 | 564 | } |
565 | 565 | |
566 | 566 | /** |
@@ -643,7 +643,7 @@ discard block |
||
643 | 643 | string $targetColumn |
644 | 644 | ): string { |
645 | 645 | $targetAlias = $this->createAlias($targetTable); |
646 | - $joinCondition = $this->buildColumnName($fromAlias, $fromColumn) . '=' . |
|
646 | + $joinCondition = $this->buildColumnName($fromAlias, $fromColumn).'='. |
|
647 | 647 | $this->buildColumnName($targetAlias, $targetColumn); |
648 | 648 | |
649 | 649 | $this->innerJoin( |
@@ -689,7 +689,7 @@ discard block |
||
689 | 689 | */ |
690 | 690 | private function createAlias(string $tableName): string |
691 | 691 | { |
692 | - $alias = $tableName . (++$this->aliasIdCounter); |
|
692 | + $alias = $tableName.(++$this->aliasIdCounter); |
|
693 | 693 | $this->knownAliases[$tableName] = $alias; |
694 | 694 | |
695 | 695 | return $alias; |
@@ -854,7 +854,7 @@ discard block |
||
854 | 854 | } else { |
855 | 855 | assert( |
856 | 856 | $value !== null, |
857 | - 'It seems you are trying to use `null` with =, >, <, or etc operator. ' . |
|
857 | + 'It seems you are trying to use `null` with =, >, <, or etc operator. '. |
|
858 | 858 | 'Use `is null` or `not null` instead.' |
859 | 859 | ); |
860 | 860 | assert(is_string($value), "Only strings, booleans and integers are supported."); |