PhpDoc. Eclipse 中变量的参数化
我听说 Eclipse 不支持这样的变量参数化:
<代码>/**
@var DBProxy
<代码>*/
$proxy;
或
<代码>/**
@var Uri
<代码>*/
$uri =Registry::get('uri');
$uri->...
但没有可用的补全
还有其他解决方案吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个怎么样:
基本上,使用 :
应该可以。
What about this :
Basically, using :
should work.