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
This change in sentry-php 1.6.0 means that Raven_Client#user_context() no longer accepts null as the first argument. Passing null now generates a PHP Warning because the null value is passed to array_merge().
I've filed the issue against sentry-php here because it's a backward-compatibility break, but perhaps we should consider only passing arrays to that method from now on. The problematic line in RavenHander is here.
The text was updated successfully, but these errors were encountered:
This change in sentry-php 1.6.0 means that
Raven_Client#user_context()
no longer acceptsnull
as the first argument. Passingnull
now generates a PHP Warning because the null value is passed toarray_merge()
.I've filed the issue against sentry-php here because it's a backward-compatibility break, but perhaps we should consider only passing arrays to that method from now on. The problematic line in
RavenHander
is here.The text was updated successfully, but these errors were encountered: