@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | */ |
42 | 42 | public function columns($table) |
43 | 43 | { |
44 | - return $this->query($table, 'PRAGMA table_info("' . $table . '");'); |
|
44 | + return $this->query($table, 'PRAGMA table_info("'.$table.'");'); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | /** |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | */ |
162 | 162 | protected function properties($row, Column $column) |
163 | 163 | { |
164 | - $column->setNull(! $row->notnull); |
|
164 | + $column->setNull( ! $row->notnull); |
|
165 | 165 | |
166 | 166 | $row->pk && $column->setAutoIncrement(true); |
167 | 167 | |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | */ |
180 | 180 | protected function reference($table, Column $column) |
181 | 181 | { |
182 | - $query = 'PRAGMA foreign_key_list("' . $table . '");'; |
|
182 | + $query = 'PRAGMA foreign_key_list("'.$table.'");'; |
|
183 | 183 | |
184 | 184 | $result = $this->pdo->prepare($query); |
185 | 185 |