nette-intellij/intellij-nette

Support for new @method annotations

Majkl578 opened this issue · 2 comments

Offer completion for method name and type, possibly automatic generation of these methods.

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 ;)