smarty-php / smarty

Smarty is a template engine for PHP, facilitating the separation of presentation (HTML/CSS) from application logic.
Other
2.24k stars 705 forks source link

Method Smarty_Template_Compiled::render() should return string but return statement is missing #897

Closed ghost closed 12 months ago

ghost commented 1 year ago

Hello everyone!

I noticed that the function render() in the file libs/sysplugins/smarty_template_compiled.php has a phpdoc @return tag for a string, but the function code has no return statements, it returns nothing (void).

Is the @return tag wrong? or should the function actually return something?

Thank you.