When autocompleting a method name for an object, like
$object->getExamp...
and the method is being suggested, pressing enter leads to the function name without the brackets:
$object->getExample
while it should be
$object->getExample() for a method (not a property - there it would be correct)
One could discuss if
$object->getExample(
is better, if the method has properties that need to be added, but at least if there are no properties, like for a getter, it should be the complete
$object->getExample()
That would be perfect.
Thank you very very much! :)