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
Have this:
$foo = 'foo \\\' bar';
Apply "Replace quotes with escaping" Exepcted:
$foo = "foo \' bar";
Result:
$foo = "foo \\' bar";
The text was updated successfully, but these errors were encountered:
Affects also nowdocs:
$foo = <<<'TAG' \"\'\\ TAG;
Apply "Convert to heredoc with escaping" Expected:
$foo = <<<TAG \"\'\\\ TAG;
$foo = <<<TAG \"\\'\\\ TAG;
Sorry, something went wrong.
Demonstrate #11
02d35e4
Fix #11 ("Replace quotes with escaping" excessively escapes single qu…
f6f76a1
…ote on double quoted string) Fix bad test data on testEscapeSequences
Demonstrate #11 also for heredocs
eecacee
Fix #11 for heredocs ("Replace quotes with escaping" excessively esca…
01bd6ad
…pes single quote on double quoted string) Fix bad test data on testEscapeSequences
axelcostaspena
No branches or pull requests
Have this:
Apply "Replace quotes with escaping"
Exepcted:
Result:
The text was updated successfully, but these errors were encountered: