@@ -637,7 +637,7 @@ discard block |
||
637 | 637 | */ |
638 | 638 | public function __toString() |
639 | 639 | { |
640 | - return $this->table . '.' . $this->getName(); |
|
640 | + return $this->table.'.'.$this->getName(); |
|
641 | 641 | } |
642 | 642 | |
643 | 643 | /** |
@@ -695,7 +695,7 @@ discard block |
||
695 | 695 | } |
696 | 696 | |
697 | 697 | if (!empty($enumValues)) { |
698 | - return '(' . implode(', ', $enumValues) . ')'; |
|
698 | + return '('.implode(', ', $enumValues).')'; |
|
699 | 699 | } |
700 | 700 | |
701 | 701 | return ''; |
@@ -265,7 +265,7 @@ |
||
265 | 265 | public function __call(string $method, array $arguments) |
266 | 266 | { |
267 | 267 | if (!in_array($method = strtoupper($method), ['AVG', 'MIN', 'MAX', 'SUM'])) { |
268 | - throw new BuilderException("Unknown method '{$method}' in '" . get_class($this) . "'"); |
|
268 | + throw new BuilderException("Unknown method '{$method}' in '".get_class($this)."'"); |
|
269 | 269 | } |
270 | 270 | |
271 | 271 | if (!isset($arguments[0]) || count($arguments) > 1) { |