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
Related to #29 (although the opposite), I think it would be nice if we also didn't change embedded newlines into inline \ns.
\n
$query = 'SELECT * FROM users WHERE u.id IS NULL';
becomes
$query = 'SELECT *\n FROM users\n WHERE u.id IS NULL';
The text was updated successfully, but these errors were encountered:
@evilebottnawi not sure how we want to address this - node.value in the parser doesn't seem to have any differentiation between
node.value
$test = "test\nstring";
and
$test = "test string";
Sorry, something went wrong.
maybe we can utilize the new node.raw attribute somehow?
node.raw
Depending how high priority this is I can try take a look next week.
Successfully merging a pull request may close this issue.
Related to #29 (although the opposite), I think it would be nice if we also didn't change embedded newlines into inline
\n
s.becomes
The text was updated successfully, but these errors were encountered: