MINOR Added SQLDatabaseConfigurationHelper::requireDatabaseVersion() as a stub method until it's implemented

This commit is contained in:
Sean Harvey 2010-05-15 04:08:12 +00:00
parent 46c903652a
commit 483da30a0f

View File

@ -100,7 +100,6 @@ class SQLiteDatabaseConfigurationHelper implements DatabaseConfigurationHelper {
$error = ''; $error = '';
} }
return array( return array(
'success' => $success, 'success' => $success,
'connection' => $conn, 'connection' => $conn,
@ -108,6 +107,13 @@ class SQLiteDatabaseConfigurationHelper implements DatabaseConfigurationHelper {
); );
} }
public function requireDatabaseVersion($databaseConfig) {
return array(
'success' => true,
'error' => ''
);
}
/** /**
* Ensure that the database connection is able to use an existing database, * Ensure that the database connection is able to use an existing database,
* or be able to create one if it doesn't exist. * or be able to create one if it doesn't exist.