Completed
Branch feature/pre-split (b025f2)
by Anton
03:30
created
source/Spiral/Database/Entities/Database.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -345,7 +345,7 @@
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
source/Spiral/Database/Drivers/Postgres/PostgresDriver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.