Created
February 5, 2011 11:58
-
-
Save lsmith77/812402 to your computer and use it in GitHub Desktop.
move to a single load method
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Before ### | |
## Doctrine Configuration | |
doctrine.dbal: | |
dbname: xxxxxxxx | |
user: xxxxxxxx | |
password: ~ | |
logging: %kernel.debug% | |
doctrine.orm: | |
auto_generate_proxy_classes: %kernel.debug% | |
mappings: | |
HelloBundle: ~ | |
hello_config: ~ | |
### After ### | |
## Doctrine Configuration | |
doctrine: | |
dbal: | |
dbname: xxxxxxxx | |
user: xxxxxxxx | |
password: ~ | |
logging: %kernel.debug% | |
orm: | |
auto_generate_proxy_classes: %kernel.debug% | |
mappings: | |
HelloBundle: ~ | |
# hello configLoad() will be called if defined |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment