Hi again,
If the little trick works perfect when going through arrays, I can't manage to make it successfull with hash tables.
For example, I have an object of type
MyClass in the session array $_SESSION.
But even if I use a type hint (@var MyClass), PhpEd doesn't seem to recognize it.
Code example:
$obj = new MyClass();
$_SESSION['obj'] = $obj;
/**
* @var MyClass
*/
$_SESSION['obj']->
Maybe you can provide me with another of your magic tricks !
Btw, I use the latest build (4511)
PS :
In this build, when I type "/**" and press RETURN,
there no more the automatic completion for the description comment, I mean:
/**
* @desc
*/
Is it normal ?
Thanks in advance for your precious advices and good luck to PhpEd, best IDE ever written !