for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Fiv\Form\Element;
/**
* Class TextArea
* Generate <textarea></textarea> html tag
*
* @author Ivan Shcherbak <[email protected]>
* @package Fiv\Form
*/
class TextArea extends BaseElement {
* @return string
public function render() {
return '<textarea ' . $this->getAttributesAsString() . '>' . $this->getValue() . '</textarea>';
}