Hi.
I heared Eclipse doesn't support parameterization of variables like this:
/**
@var DBProxy
*/
$proxy;
or
/**
@var Uri
*/
$uri = Registry::get('uri');
$uri->...
But no completions available
Is there any other solution?
Hi.
I heared Eclipse doesn't support parameterization of variables like this:
/**
@var DBProxy
*/
$proxy;
or
/**
@var Uri
*/
$uri = Registry::get('uri');
$uri->...
But no completions available
Is there any other solution?
What about this :
/* @var $uri Uri */
$uri = Registry::get('uri');
Basically, using :
/* @var $variableName VariableType */
should work.