在父类我有:
/**
* Render the widget.
* @param array $options
* @return string
*/
abstract public function render(array $options=[]);
在孩子班上我有:
/**
* {@inheritDoc}
*/
public function render(array $options=[]) { /*...*/ }
但是phpdoc为子类提供了以下错误:
Argument $options is missing from the Docblock of render()
为什么?
编辑:如果我在http://phpdoc.org/docs/latest/guides/inheritance.html理解它,那么无论inheritDoc存在,都应该继承方法params。