Re: [PHP] PHPDoc autocomplete hints

2008-02-26 Thread Bojan Tesanovic
In getUserDAO() method you need to specify return type eg /** * @return UserDAO */ function getUserDAO(){ ... } and UserDAO class must have resetPW method, I guess it alredy has. This works for me, I have Zend Studio 5.5.0 On Feb 26, 2008, at 2:21 PM, Thiago Pojda wrote: Guys, I

[PHP] PHPDoc autocomplete hints

2008-02-26 Thread Thiago Pojda
Guys, I'm new to this thing and I'm not sure if it's my IDE (ZendStudioNeon) problem, or if I'm doing something wrong. I always use PHPDoc block comments on my functions, but this time I'm using factories in my code and missing autocomplete on those objects. I've tried using those hints as below,