You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The error type is set as E_USER_ERROR when it should be E_USER_DEPRECATED. using E_USER_ERROR throws non-recoverable exception and breaks the site whether env:prod or env:dev.
changing it to E_USER_DEPRECATED fixes problem for me.
The text was updated successfully, but these errors were encountered:
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: