We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This issue is a mention to this comment in the accepted PR of @JesusValera . I will quote:
I was thinking, maybe it makes sense to also add this rule for the Elvis/null coalescing operators?
// Not this $foo = 'foo' ?? 'bar'; $foo = 'foo' ?: 'bar'; // But this $foo = 'foo' ?? 'bar'; $foo = 'foo' ?: 'bar';
I could add the modifications in this (or another PR), let me know what you think and if you have another suggestion 😄
Originally posted by @JesusValera in #93 (comment)
The text was updated successfully, but these errors were encountered:
My bad, it is already done in https://github.com/php-fig/per-coding-style/pull/93/files?diff=unified&w=0
Sorry, something went wrong.
No branches or pull requests
This issue is a mention to this comment in the accepted PR of @JesusValera . I will quote:
I was thinking, maybe it makes sense to also add this rule for the Elvis/null coalescing operators?
I could add the modifications in this (or another PR), let me know what you think and if you have another suggestion 😄
Originally posted by @JesusValera in #93 (comment)
The text was updated successfully, but these errors were encountered: