13

在使用具有私有或受保护成员变量的类时,如何设置代码完成以在 Zend Studio(或任何基于 Eclipse 的 IDE)上工作,而不求助于一堆 Getter 或将成员变量设置为公共。

例如:

class Dog {

    protected $bark = 'woof!';

    public function __get($key) {
        if (isset($this->$key)) {
            return $this->$key;
        }
    }

}

$Dog = new Dog();
echo $Dog->bark; // <-- I want the IDE to "know" that bark is a property of Dog.
4

1 回答 1

26

魔术方法的代码补全可以通过在类的 DocBlock 中使用@property@method注释来实现(而不是在方法文档中)。

/**
 * @property string bark
 */
class Dog {
    /* ... */
}

$Dog = new Dog();
echo $Dog-> // will autocomplete now

请注意,实际代码和注释之间没有关联。Zend Studio 将显示您设置的任何内容@property,而不管此属性是否存在。它也不会检查是否真的有可用的魔法方法。

Zend Studio 中使用@property 注释的代码完成

于 2010-09-28T17:00:32.387 回答