我找到了一种以这种方式说 netbeans 变量类型的方法:
/* @var $variablename Type */
但是在这种情况下没有提示(数据库是我的类):
//model.php
abstract class Model {
/* @var $db Database */
protected $db;
(...)
}
//Mymodel.php
class MyModel extends Model {
(...)
$this->db-> //no hints
(...)
}
是Netbeans限制还是我的错误?