Passed
Push — main ( 604840...baf5f1 )
by Thierry
01:42
created
src/Db/Database.php 1 patch
Spacing   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
             $clauses[] = 'DROP INDEX ' . $this->driver->escapeId($index->name);
78 78
         }
79 79
         foreach ($alter as $index) {
80
-            $clauses[] = 'ADD ' . ($index->type == 'PRIMARY' ? 'PRIMARY KEY ' :  $index->type . ' ') .
80
+            $clauses[] = 'ADD ' . ($index->type == 'PRIMARY' ? 'PRIMARY KEY ' : $index->type . ' ') .
81 81
                 ($index->name != '' ? $this->driver->escapeId($index->name) . ' ' : '') .
82 82
                 '(' . implode(', ', $index->columns) . ')';
83 83
         }
@@ -91,8 +91,7 @@  discard block
 block discarded – undo
91 91
     public function tables()
92 92
     {
93 93
         return $this->driver->keyValues($this->driver->minVersion(5) ?
94
-            'SELECT TABLE_NAME, TABLE_TYPE FROM information_schema.TABLES WHERE TABLE_SCHEMA = DATABASE() ORDER BY TABLE_NAME' :
95
-            'SHOW TABLES');
94
+            'SELECT TABLE_NAME, TABLE_TYPE FROM information_schema.TABLES WHERE TABLE_SCHEMA = DATABASE() ORDER BY TABLE_NAME' : 'SHOW TABLES');
96 95
     }
97 96
 
98 97
     /**
@@ -112,7 +111,7 @@  discard block
 block discarded – undo
112 111
      */
113 112
     public function dropViews(array $views)
114 113
     {
115
-        $this->driver->execute('DROP VIEW ' . implode(', ', array_map(function ($view) {
114
+        $this->driver->execute('DROP VIEW ' . implode(', ', array_map(function($view) {
116 115
             return $this->driver->table($view);
117 116
         }, $views)));
118 117
         return true;
@@ -123,7 +122,7 @@  discard block
 block discarded – undo
123 122
      */
124 123
     public function dropTables(array $tables)
125 124
     {
126
-        $this->driver->execute('DROP TABLE ' . implode(', ', array_map(function ($table) {
125
+        $this->driver->execute('DROP TABLE ' . implode(', ', array_map(function($table) {
127 126
             return $this->driver->table($table);
128 127
         }, $tables)));
129 128
         return true;
Please login to merge, or discard this patch.