8000
BC Break regression in ParameterBag #17058
Labels
Here: https://github.com/symfony/symfony/blob/2.8/src/Symfony/Component/HttpFoundation/ParameterBag.php#L271
The error type is set as
E_USER_ERROR
when it should beE_USER_DEPRECATED
. usingE_USER_ERROR
throws non-recoverable exception and breaks the site whetherenv:prod
orenv:dev
.changing it to
E_USER_DEPRECATED
fixes problem for me.The text was updated successfully, but these errors were encountered: