Reputation: 1692
im trying to override a config files from a bundle. Im doing everthing like here: http://symfony.com/doc/current/cookbook/bundles/inheritance.html, but for me that solution dosent work.
I have a class which has function getParent()
public function getParent()
{
return 'ParentBundle';
}
And a config file in Resources/config/storage.xml. Why this storage.xml from child bundle dosent work ?
Upvotes: 0
Views: 730
Reputation: 3419
First, have you cleared your cache ?
If it still doesn't work, you should ensure the budnle you are trying to override uses the @FooBundle/Resource/config/storage.xml
syntax.
Upvotes: 1