Completed
Push — master ( 2911b9...ef01ce )
by Rougin
11:32
created
src/Driver/SQLiteDriver.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         $columns = [];
38 38
 
39 39
         // Gets list of columns
40
-        $query = 'PRAGMA table_info("' . $table . '");';
40
+        $query = 'PRAGMA table_info("'.$table.'");';
41 41
         $information = $this->pdo->prepare($query);
42 42
 
43 43
         $information->execute();
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
         }
64 64
 
65 65
         // Gets list of foreign keys
66
-        $query = 'PRAGMA foreign_key_list("' . $table . '");';
66
+        $query = 'PRAGMA foreign_key_list("'.$table.'");';
67 67
         $information = $this->pdo->prepare($query);
68 68
 
69 69
         $information->execute();
Please login to merge, or discard this patch.