@@ -345,7 +345,7 @@ |
||
| 345 | 345 | */ |
| 346 | 346 | public function hasTable(string $name): bool |
| 347 | 347 | { |
| 348 | - return $this->driver->hasTable($this->prefix . $name); |
|
| 348 | + return $this->driver->hasTable($this->prefix.$name); |
|
| 349 | 349 | } |
| 350 | 350 | |
| 351 | 351 | /** |
@@ -137,7 +137,7 @@ |
||
| 137 | 137 | { |
| 138 | 138 | return $this->factory->make( |
| 139 | 139 | PostgresInsertQuery::class, |
| 140 | - ['driver' => $this, 'compiler' => $this->queryCompiler($prefix),] + $parameters |
|
| 140 | + ['driver' => $this, 'compiler' => $this->queryCompiler($prefix), ] + $parameters |
|
| 141 | 141 | ); |
| 142 | 142 | } |
| 143 | 143 | |