Browse Source

Refactor the database manager.

Taylor Otwell 13 years ago
parent
commit
73065d12c2
1 changed files with 4 additions and 1 deletions
  1. 4 1
      system/db/manager.php

+ 4 - 1
system/db/manager.php

@@ -22,7 +22,10 @@ class Manager {
 	 */
 	public static function connection($connection = null)
 	{
-		if (is_null($connection)) $connection = Config::get('db.default');
+		if (is_null($connection))
+		{
+			$connection = Config::get('db.default');
+		}
 
 		if ( ! array_key_exists($connection, static::$connections))
 		{