Skip to content
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

Add ability to "Replace quotes with escaping" to reverse "Replace quotes with escapìng and variable concatenation" #10

Open
axelcostaspena opened this issue Oct 13, 2014 · 0 comments
Assignees
Milestone

Comments

@axelcostaspena
Copy link
Owner

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 " . $bar . ' baz';

Target 2: 'foo ' . $bar . ' baz'. Result:

$foo = "foo $bar baz";
@axelcostaspena axelcostaspena self-assigned this Oct 13, 2014
@axelcostaspena axelcostaspena added this to the v1 milestone Oct 13, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant