1 <?php
2 /**
3 * TextareaInput.php
4 *
5 * @author Elvyrra SAS
6 * @license http://rem.mit-license.org/ MIT
7 */
8
9 namespace Hawk;
10
11 /**
12 * This class describes the behavior of textareas
13 *
14 * @package Form\Input
15 */
16 class TextareaInput extends FormInput{
17 const TYPE = 'textarea';
18
19 /**
20 * The attribute 'rows'
21 *
22 * @var int
23 */
24 public $rows = 15,
25
26 /**
27 * The attribute 'cols'
28 *
29 * @var int
30 */
31 $cols = 30;
32 }
33