-
Notifications
You must be signed in to change notification settings - Fork 102
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
String offset access syntax with curly braces (PHP 7.4 compat) #189
Conversation
Semi-related to this PR, do we want to wait for 7.4 to finalized or should we add |
7.4 has entered feature freeze, it makes sense to add |
Based on #192 - this will need more updates |
1b37f7a
to
ddf799b
Compare
Rebased this one after #192 got merged in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
I believe these changes cover the topic of the issue completely. Remaining deprecation notices bubble up from bovigo/callmap#10 - and they can be sorted once that gets merged (and dependancy gets updated in this repository afterwards). |
@kornrunner Now that #194 has been merged into master and callmap updated, could you please rebase this on top of master and then we'll be able to finally confirm everything's working as expected with 7.4. |
Sure, it's done |
Thanks @kornrunner for all of your work to get us and our related projects to play nicely on 7.4 🎉 |
Array and string offset access syntax with curly braces is deprecated in PHP 7.4, this change will prevent notice from being issued.
Thanks!