Passed
Push — dbal ( 0d198d...ad0787 )
by Greg
06:19
created
app/DB/Drivers/MySQLDriver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
      */
81 81
     public function introspectSchema(string $schema_name = null): Schema
82 82
     {
83
-        $schema_name     ??= $this->query(sql: 'SELECT DATABASE() AS schema_name')[0]->schema_name;
83
+        $schema_name ??= $this->query(sql: 'SELECT DATABASE() AS schema_name')[0]->schema_name;
84 84
         $pattern         = $this->escapeLike(string: $this->prefix) . '%';
85 85
         $table_data      = $this->informationSchemaTables(schema_name: $schema_name, pattern: $pattern);
86 86
         $column_data     = $this->informationSchemaColumns(schema_name: $schema_name, pattern: $pattern);
Please login to merge, or discard this patch.