Completed
Push — master ( 02f939...2259aa )
by Lars
02:23
created
src/idiorm/orm/ORM.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -2314,15 +2314,15 @@  discard block
 block discarded – undo
2314 2314
     // the results of calling each separate builder method.
2315 2315
     return $this->_join_if_not_empty(
2316 2316
         " ", array(
2317
-               $this->_build_select_start(),
2318
-               $this->_build_join(),
2319
-               $this->_build_where(),
2320
-               $this->_build_group_by(),
2321
-               $this->_build_having(),
2322
-               $this->_build_order_by(),
2323
-               $this->_build_limit(),
2324
-               $this->_build_offset(),
2325
-           )
2317
+                $this->_build_select_start(),
2318
+                $this->_build_join(),
2319
+                $this->_build_where(),
2320
+                $this->_build_group_by(),
2321
+                $this->_build_having(),
2322
+                $this->_build_order_by(),
2323
+                $this->_build_limit(),
2324
+                $this->_build_offset(),
2325
+            )
2326 2326
     );
2327 2327
   }
2328 2328
 
@@ -2547,9 +2547,9 @@  discard block
 block discarded – undo
2547 2547
 
2548 2548
     // double up any identifier quotes to escape them
2549 2549
     return $quote_character .
2550
-           str_replace(
2551
-               $quote_character, $quote_character . $quote_character, $part
2552
-           ) . $quote_character;
2550
+            str_replace(
2551
+                $quote_character, $quote_character . $quote_character, $part
2552
+            ) . $quote_character;
2553 2553
   }
2554 2554
 
2555 2555
   /**
Please login to merge, or discard this patch.