From c13a4ff8550ad625129d2fb2960cc922eea284ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Pineau?= Date: Tue, 7 Jul 2015 14:33:24 +0200 Subject: [PATCH] [DependencyInjection] Added ParameterBagInterface::remove --- .../ParameterBag/ParameterBagInterface.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Symfony/Component/DependencyInjection/ParameterBag/ParameterBagInterface.php b/src/Symfony/Component/DependencyInjection/ParameterBag/ParameterBagInterface.php index 96003547b6..41f8221c46 100644 --- a/src/Symfony/Component/DependencyInjection/ParameterBag/ParameterBagInterface.php +++ b/src/Symfony/Component/DependencyInjection/ParameterBag/ParameterBagInterface.php @@ -60,6 +60,13 @@ interface ParameterBagInterface */ public function get($name); + /** + * Removes a parameter. + * + * @param string $name The parameter name + */ + public function remove($name); + /** * Sets a service container parameter. *