Browse Source

Refactor the connector class.

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

+ 1 - 4
system/db/connector.php

@@ -79,10 +79,7 @@ class Connector {
 	{
 	{
 		$dsn = $config->driver.':host='.$config->host.';dbname='.$config->database;
 		$dsn = $config->driver.':host='.$config->host.';dbname='.$config->database;
 
 
-		if (isset($config->port))
-		{
-			$dsn .= ';port='.$config->port;
-		}
+		if (isset($config->port)) $dsn .= ';port='.$config->port;
 
 
 		$connection = new \PDO($dsn, $config->username, $config->password, $this->options);
 		$connection = new \PDO($dsn, $config->username, $config->password, $this->options);