A PHPDoc result type of the \Magento\Framework\View\TemplateEngineInterface::render() method is wrong

https://github.com/magento/magento2/blob/c58d2d/lib/internal/Magento/Framework/View/TemplateEngineInterface.php#L13-L28

The @return string is wrong because the class \Magento\Framework\View\TemplateEngine\Xhtml class implements the \Magento\Framework\View\TemplateEngineInterface::render() method and returns an instance of the \Magento\Framework\View\TemplateEngine\Xhtml\ResultInterface (particularly, \Magento\Ui\TemplateEngine\Xhtml\Result), not a string:

https://github.com/magento/magento2/blob/c58d2d/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml.php#L71-L89


https://github.com/magento/magento2/issues/3252

See also: