Completed
Push — master ( 5a0a40...7a953d )
by Rougin
02:22
created
src/Driver/SQLiteDriver.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     {
38 38
         $columns = [];
39 39
 
40
-        $query = $this->pdo->prepare('PRAGMA table_info("' . $table . '");');
40
+        $query = $this->pdo->prepare('PRAGMA table_info("'.$table.'");');
41 41
 
42 42
         $query->setFetchMode(\PDO::FETCH_OBJ)->execute();
43 43
 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
             array_push($columns, $column);
54 54
         }
55 55
 
56
-        $query = $this->pdo->prepare('PRAGMA foreign_key_list("' . $table . '");');
56
+        $query = $this->pdo->prepare('PRAGMA foreign_key_list("'.$table.'");');
57 57
 
58 58
         $query->setFetchMode(\PDO::FETCH_OBJ)->execute();
59 59
 
@@ -113,9 +113,9 @@  discard block
 block discarded – undo
113 113
      * @param  \Rougin\Describe\Column &$column
114 114
      * @return void
115 115
      */
116
-    protected function setProperties($row, Column &$column)
116
+    protected function setProperties($row, Column & $column)
117 117
     {
118
-        if (! $row->notnull) {
118
+        if ( ! $row->notnull) {
119 119
             $column->setNull(true);
120 120
         }
121 121
 
Please login to merge, or discard this patch.