Passed
Branch psalm-3 (d5d890)
by Wilmer
02:56
created
src/Query/DDLQueryBuilder.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -203,8 +203,8 @@
 block discarded – undo
203 203
     public function dropCommentFromTable(string $table): string
204 204
     {
205 205
         return 'COMMENT ON TABLE '
206
-             . $this->queryBuilder->quoter()->quoteTableName($table)
207
-             . ' IS NULL';
206
+                . $this->queryBuilder->quoter()->quoteTableName($table)
207
+                . ' IS NULL';
208 208
     }
209 209
 
210 210
     public function dropDefaultValue(string $name, string $table): string
Please login to merge, or discard this patch.
src/TestSupport/TestQueryBuilderTrait.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1136,20 +1136,20 @@
 block discarded – undo
1136 1136
         $secondQuery = new Query($db);
1137 1137
 
1138 1138
         $secondQuery->select('id')
1139
-              ->from('TotalTotalExample t2')
1140
-              ->where('w > 5');
1139
+                ->from('TotalTotalExample t2')
1140
+                ->where('w > 5');
1141 1141
 
1142 1142
         $thirdQuery = new Query($db);
1143 1143
 
1144 1144
         $thirdQuery->select('id')
1145
-              ->from('TotalTotalExample t3')
1146
-              ->where('w = 3');
1145
+                ->from('TotalTotalExample t3')
1146
+                ->where('w = 3');
1147 1147
 
1148 1148
         $query->select('id')
1149
-              ->from('TotalExample t1')
1150
-              ->where(['and', 'w > 0', 'x < 2'])
1151
-              ->union($secondQuery)
1152
-              ->union($thirdQuery, true);
1149
+                ->from('TotalExample t1')
1150
+                ->where(['and', 'w > 0', 'x < 2'])
1151
+                ->union($secondQuery)
1152
+                ->union($thirdQuery, true);
1153 1153
 
1154 1154
         [$actualQuerySql, $queryParams] = $db->getQueryBuilder()->build($query);
1155 1155
 
Please login to merge, or discard this patch.