Bug 411767 - String with variable Quick fix
Summary: String with variable Quick fix
Status: NEW
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: PDT (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows 7
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: PHP UI CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-06-27 08:58 EDT by Premysl Fiala CLA
Modified: 2020-05-14 10:16 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Premysl Fiala CLA 2013-06-27 08:58:16 EDT
When have string within quote:
'Hi, I am $string';

After pressing ctr+1 quick assist could appear and offer fix to doublequotes:
"Hi, I am $string";


Similar for double objects
"Hi, $I->am->String";

After:
'Hi,' .$I->am->String ;

And array (in various ways):
"You can $unquote['me']"

After:
"You can $unquote[me]";

Also for functions calls etc....

And combining all together would be pleasant :))