In the parent class I have:
/**
* Render the widget.
* @param array $options
* @return string
*/
abstract public function render(array $options=[]);
In the child class I have:
/**
* {@inheritDoc}
*/
public function render(array $options=[]) { /*...*/ }
But phpdoc gives me the following error for the child class:
Argument $options is missing from the Docblock of render()
Why?
Edit: if I understand it right at http://phpdoc.org/docs/latest/guides/inheritance.html, the method params should be inherited regardless the inheritDoc presence.