Changed default value for 'password' from null to '' (empty)

This commit is contained in:
William DURAND 2011-04-06 15:01:06 +02:00
parent a20743d3b9
commit 3c4bf8f662

View file

@ -88,7 +88,7 @@ class Configuration implements ConfigurationInterface
->children()
->scalarNode('driver')->defaultValue('mysql')->end()
->scalarNode('user')->defaultValue('root')->end()
->scalarNode('password')->defaultNull()->end()
->scalarNode('password')->defaultValue('')->end()
->scalarNode('dsn')->defaultValue('')->end()
->scalarNode('classname')->defaultValue($this->debug ? 'DebugPDO' : 'PropelPDO')->end()
->scalarNode('default_connection')->defaultValue('default')->end()