Completed
Push — master ( 909995...dee2c0 )
by Lars
07:23
created
src/idiorm/orm/ORM.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1349,14 +1349,14 @@
 block discarded – undo
1349 1349
    * Add an LEFT JOIN source to the query
1350 1350
    */
1351 1351
   public function left_join($table, $constraint, $table_alias = null) {
1352
-  	return $this->_add_join_source("LEFT", $table, $constraint, $table_alias);
1352
+    return $this->_add_join_source("LEFT", $table, $constraint, $table_alias);
1353 1353
   }
1354 1354
         
1355 1355
   /**
1356 1356
    * Add an RIGHT JOIN source to the query
1357 1357
    */
1358 1358
   public function right_join($table, $constraint, $table_alias  = null) {
1359
-  	return $this->_add_join_source("RIGHT", $table, $constraint, $table_alias);
1359
+    return $this->_add_join_source("RIGHT", $table, $constraint, $table_alias);
1360 1360
   }
1361 1361
 
1362 1362
   /**
Please login to merge, or discard this patch.