MINOR Removed return of connection which is not used any longer

This commit is contained in:
Sean Harvey 2010-02-11 10:08:42 +00:00
parent 10a59a9a8d
commit e2ec1fca0e
1 changed files with 1 additions and 4 deletions

View File

@ -52,10 +52,8 @@ class PostgreSQLDatabaseConfigurationHelper implements DatabaseConfigurationHelp
/**
* Ensure a database connection is possible using credentials provided.
* The established connection resource is returned with the results as well.
*
* @param array $databaseConfig Associative array of db configuration, e.g. "server", "username" etc
* @return array Result - e.g. array('success' => true, 'connection' => mysql link, 'error' => 'details of error')
* @return array Result - e.g. array('success' => true, 'error' => 'details of error')
*/
public function requireDatabaseConnection($databaseConfig) {
$success = false;
@ -77,7 +75,6 @@ class PostgreSQLDatabaseConfigurationHelper implements DatabaseConfigurationHelp
return array(
'success' => $success,
'connection' => $conn,
'error' => $error
);
}