-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Ignore case when matching ARRAY #3226
Ignore case when matching ARRAY #3226
Conversation
Is this fixing #3140? |
@ohvitorino please target DBAL |
75a5224
to
874eff3
Compare
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.
LGTM 👍
@ohvitorino please fix the code style issues before I can merge it. |
@morozov the php code sniffer configuration being used expects, for example, short array syntax. But the whole file uses the |
Yes, it's only about the changed lines. Fixing the entire file will happen
in `develop` anyway
…On Wed, 8 Aug 2018, 08:41 Bruno Vitorino, ***@***.***> wrote:
@morozov <https://github.com/morozov> the php code sniffer configuration
being used expects, for example, short array syntax. But the whole file
uses the array() syntax, should I then change the whole file or only the
lines I changed in my PR? Changing only a couple of statements to comply
with the expected code style seems a bit inconsistent.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#3226 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAJakBMDrV6pHoF-TnGY5u7ml9FEHr8vks5uOogEgaJpZM4VbJcv>
.
|
@morozov Code styles are fixed 🙂 |
@ohvitorino thank you. Please, also squash. We don't squash commits ourselves anymore. |
af60eb5
to
5682b66
Compare
@morozov done and building |
Thank you, @ohvitorino! Merged. |
Backported to |
Summary
Named parameters get lost because the regular expression used to determine the query fragments only match the keyword
ARRAY
(capital letters). This should be made case insensitive since this is also correct syntax.