* @package tao */ class tao_helpers_form_elements_xhtml_Textarea extends tao_helpers_form_elements_Textarea { use XhtmlRenderingTrait; /** * Short description of method render * * @access public * @author Bertrand Chevrier, * @return string */ public function render() { $returnValue = $this->renderLabel(); $returnValue .= ""; return (string) $returnValue; } }