@@ -37,7 +37,7 @@ discard block |
||
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 |
||
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(); |