From cdfb696716b8101f54998f17fed6667d70f435ae Mon Sep 17 00:00:00 2001 From: Carson Full Date: Wed, 24 Feb 2016 12:32:18 -0600 Subject: [PATCH] [HttpFoundation] Remove @throws from ParameterBag::get() PHPDoc. This was for the now removed deep flag. --- src/Symfony/Component/HttpFoundation/ParameterBag.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Symfony/Component/HttpFoundation/ParameterBag.php b/src/Symfony/Component/HttpFoundation/ParameterBag.php index 6402602956aa7..da9c4ed50c4aa 100644 --- a/src/Symfony/Component/HttpFoundation/ParameterBag.php +++ b/src/Symfony/Component/HttpFoundation/ParameterBag.php @@ -82,8 +82,6 @@ public function add(array $parameters = array()) * @param mixed $default The default value if the parameter key does not exist * * @return mixed - * - * @throws \InvalidArgumentException */ public function get($key, $default = null) {