for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace hemio\html;
/**
* The textarea element represents a multi-line plain-text edit control for
the element’s raw value.
*
* @since version 1.0
* @url http://www.w3.org/TR/html5/
*/
class Textarea extends Abstract_\ElementContent implements Interface_\Submittable
{
use Trait_\Submittable,
Trait_\DefaultElementContent;
public static function tagName()
return 'textarea';
}