added method renames to UPDATE

This commit is contained in:
Kris Wallsmith 2011-04-20 04:48:32 -07:00
parent 470baaab9f
commit 022728fda5

View File

@ -6,6 +6,22 @@ one. It only discusses changes that need to be done when using the "public"
API of the framework. If you "hack" the core, you should probably follow the
timeline closely anyway.
PR12 to PR13
------------
* Some methods in the DependencyInjection component's ContainerBuilder and
Definition classes have been renamed to be more specific and consistent:
Before:
$container->remove('my_definition');
$definition->setArgument(0, 'foo');
After:
$container->removeDefinition('my_definition');
$definition->replaceArgument(0, 'foo');
PR11 to PR12
------------