PHP:用于扩展ArrayObject的类元素的phpdoc

时间:2016-04-05 12:39:02

标签: php phpdoc content-assist arrayobject

我有一个类,它是 ArrayObject 类的简单扩展:

/**
 * what to put here? :)
 */
class Collection extends \ArrayObject
{
    /**
     * @param Item
     */
    public function add(Item $item)
    {
        $this->append($item);
    }
}

是否可以让我的IDE为ArrayObject扩展类的元素使用代码完成?

foreach ($collection as $item)
{
    $item->getPrice(); //my IDE doesn't not know the object here
}

0 个答案:

没有答案