auraphp / Aura.Di

Dependency Injection System
MIT License
349 stars 63 forks source link

IDE autocomplete #90

Closed miladrahimi closed 9 years ago

miladrahimi commented 9 years ago

I really care about IDE autocomplete but I tried the package and it seems IDE (In my case PHPStorm) doesn't recognize the objects data type, is there any solution?

takyam-git commented 9 years ago

I use @var.

/** @var \name\space\to\Foo $foo */
$foo = $di->get('Foo');
miladrahimi commented 9 years ago

Oh, you are right, thanks!