Completed
Push — develop ( 3cf2fc...76184e )
by Simon
03:24
created
src/BaseConnection.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -346,15 +346,15 @@
 block discarded – undo
346 346
 
347 347
 		$name = trim($name);
348 348
 
349
-        if( $name == '*' )
350
-            return $name;
349
+		if( $name == '*' )
350
+			return $name;
351 351
 
352 352
 		// ANSI-SQL (everything else) says to use double quotes to quote identifiers
353
-        $char = '"';
353
+		$char = '"';
354 354
 
355 355
 		// MySQL uses backticks cos it's special
356 356
 		if( $this->dsn->isMySQL() )
357
-        	$char = '`';
357
+			$char = '`';
358 358
 
359 359
 		return $char. $name. $char;
360 360
 
Please login to merge, or discard this patch.
src/support/DatabaseTree.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -390,7 +390,7 @@
 block discarded – undo
390 390
 
391 391
 		$this->db->execute("UPDATE {$this->table_name} SET lft = ?, rgt = ? WHERE id = ?", array($lft, $rgt, $id));
392 392
 
393
-	    return $rgt + 1;
393
+		return $rgt + 1;
394 394
 
395 395
 	}
396 396
 
Please login to merge, or discard this patch.