Commit 0b260c37 authored by Fabien Potencier's avatar Fabien Potencier

merged branch rejinka/master (PR #209)

Commits
-------

1b1ce148 small correction in the configuration array

Discussion
----------

Small correction in the configuration array of DoctrineProvider

Netbeans just complained about missing comma.
parents ff54c09c 1b1ce148
......@@ -93,14 +93,14 @@ and values are options::
'dbs.options' => array (
'mysql_read' => array(
'driver' => 'pdo_mysql',
'host' => 'mysql_read.someplace.tld'
'host' => 'mysql_read.someplace.tld',
'dbname' => 'my_database',
'user' => 'my_username',
'password' => 'my_password',
),
'mysql_write' => array(
'driver' => 'pdo_mysql',
'host' => 'mysql_write.someplace.tld'
'host' => 'mysql_write.someplace.tld',
'dbname' => 'my_database',
'user' => 'my_username',
'password' => 'my_password',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment