Browse Source

Refactor the database manager.

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

+ 1 - 4
system/db/manager.php

@@ -22,10 +22,7 @@ class Manager {
 	 */
 	 */
 	public static function connection($connection = null)
 	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))
 		if ( ! array_key_exists($connection, static::$connections))
 		{
 		{