-
-
Notifications
You must be signed in to change notification settings - Fork 586
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PHP7.4: Deprecated warning - serializationContext.php on line 152 #1111
Labels
Comments
Merged
Hi, thanks for reporting this. |
fixed in #1113 |
markelarauzo7
added a commit
to markelarauzo7/ddd
that referenced
this issue
Oct 7, 2020
…X which is not compatible with php7.4 See: schmittjoh/serializer#1111
mhujer
added a commit
to mhujer/jms-serializer-uuid
that referenced
this issue
Dec 31, 2020
mhujer
added a commit
to mhujer/jms-serializer-uuid
that referenced
this issue
Dec 31, 2020
mhujer
added a commit
to mhujer/jms-serializer-uuid
that referenced
this issue
Dec 31, 2020
mhujer
added a commit
to mhujer/consistence-jms-serializer
that referenced
this issue
Mar 5, 2021
mhujer
added a commit
to mhujer/consistence-jms-serializer
that referenced
this issue
Mar 5, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Steps required to reproduce the problem
<b>Deprecated</b>: Unparenthesized
a ? b : c ? d : eis deprecated. Use either
(a ? b : c) ? d : eor
a ? b : (c ? d : e)in <b>/data/vendor/jms/serializer/src/SerializationContext.php</b> on line <b>152</b>
Expected Result
No deprecated warning
Actual Result
<b>Deprecated</b>: Unparenthesized
a ? b : c ? d : eis deprecated. Use either
(a ? b : c) ? d : eor
a ? b : (c ? d : e)in <b>/data/vendor/jms/serializer/src/SerializationContext.php</b> on line <b>152</b>
The text was updated successfully, but these errors were encountered: