Support for new @method annotations
Majkl578 opened this issue · 2 comments
Majkl578 commented
Offer completion for method name and type, possibly automatic generation of these methods.
juzna commented
Do you mean this:
class Foo
{
/** @var string */
public $name;
}
$foo = new Foo;
$foo-> // should autocomplete string getName() and setName(string $name)
or something else? Pls provide link to documentation, or even better sample code ;)
Majkl578 commented