Completed
Push — master ( 274d98...aefd8c )
by Ahmet
01:43
created
src/qb.php 1 patch
Switch Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -309,18 +309,18 @@
 block discarded – undo
309 309
             throw new \Exception('Specify at least 1 table name');
310 310
         }
311 311
         switch ($join_type) {
312
-                case qb::INNER_JOIN:
313
-                    $join_type_ = 'INNER JOIN';
314
-                    break;
315
-                case qb::LEFT_JOIN:
316
-                    $join_type_ = 'LEFT JOIN';
317
-                    break;
318
-                case qb::RIGHT_JOIN:
319
-                    $join_type_ = 'RIGHT JOIN';
320
-                    break;
321
-                case qb::FULL_JOIN:
322
-                    $join_type_ = 'FULL OUTER JOIN';
323
-                    break;
312
+        case qb::INNER_JOIN:
313
+            $join_type_ = 'INNER JOIN';
314
+            break;
315
+        case qb::LEFT_JOIN:
316
+            $join_type_ = 'LEFT JOIN';
317
+            break;
318
+        case qb::RIGHT_JOIN:
319
+            $join_type_ = 'RIGHT JOIN';
320
+            break;
321
+        case qb::FULL_JOIN:
322
+            $join_type_ = 'FULL OUTER JOIN';
323
+            break;
324 324
             }
325 325
         $table = $this->_table_names[0];
326 326
         $where = count($this->_conditions) > 0 ? (' on ' . implode(' and ', $this->_conditions)) : null;
Please login to merge, or discard this patch.