more session refactoring.

This commit is contained in:
Taylor Otwell
2011-09-14 20:49:38 -05:00
parent ae5393f5a7
commit 6becbaba51
3 changed files with 18 additions and 18 deletions

View File

@@ -47,12 +47,12 @@ return array(
'mysql' => function($config)
{
return new PDO('mysql:host=localhost;dbname=database', 'username', 'password', $config['options']);
return new PDO('mysql:host=localhost;dbname=database', 'root', 'password', $config['options']);
},
'pgsql' => function($config)
{
return new PDO('pgsql:host=localhost;dbname=database', 'username', 'password', $config['options']);
return new PDO('pgsql:host=localhost;dbname=database', 'root', 'password', $config['options']);
},
),