The documentation comment for EntityFieldSelect::getInfo() is the following one.
/**
* {@inheritdoc}
*
* See @ElementInfoManagerInterface::getInfo().
*/
It contains a typo, and it should probably be @see ElementInfoManagerInterface::getInfo(), but it is also useless, since the inherited documentation comment is the following one.
/**
* Returns the element properties for this element.
*
* @return array
* An array of element properties. See
* \Drupal\Core\Render\ElementInfoManagerInterface::getInfo() for
* documentation of the standard properties of all elements, and the
* return value format.
*/
public function getInfo();
There is no need to add a reference already added by the inherited documentation comment. That line can be removed.
Comments
Comment #4
avpaderno