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 baz";
Apply "Replace quotes with escaping and variable concatenation". Have:
$foo = 'foo ' . $bar . ' baz';
Apply "Replace quotes with escaping" on 'foo '. User should be offered to choose between two targets: Target 1: 'foo ' Result:
'foo '
$foo = "foo " . $bar . ' baz';
Target 2: 'foo ' . $bar . ' baz'. Result:
'foo ' . $bar . ' baz'
The text was updated successfully, but these errors were encountered:
axelcostaspena
No branches or pull requests
Have this:
Apply "Replace quotes with escaping and variable concatenation". Have:
Apply "Replace quotes with escaping" on
'foo '
.User should be offered to choose between two targets:
Target 1:
'foo '
Result:
Target 2:
'foo ' . $bar . ' baz'
. Result:The text was updated successfully, but these errors were encountered: