Autocomplete select is not shown automaticaly when trying to call static method.
In this example everything works:
Code: Select all
$o = new Object();
$o->[after > is entered autocomplete pops up and everything is fine]
Code: Select all
Object::[to open autocomplete I have to start type something]
When trying to get static method parameters with CTRL + SHIFT + SPACE they are wrongly taken from another classes another method.
Example which works (from real code):
Code: Select all
$d = new Domain();
$d->update([pops up tooltip with $domain_id, $full_edit, $data]);
Code: Select all
Domain::update([pops up tooltip with wrong parameters]);