idea-php-toolbox
idea-php-toolbox copied to clipboard
Add array-key or value completion for returned values and assigned variables
Example:
$components = parse_url($url);
$components['<CARET>'] ...
..would list:
schemehostportuserpasspathqueryfragment
Something similar could be:
// returns either 'a' or 'b'
$value = getSomething();
if ($value == '<CARET>') {
...
...lists a and b