1 <?php
2 /**
3 * TextInput.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 text inputs
13 *
14 * @package Form\Input
15 */
16 class TextInput extends FormInput{
17 const TYPE = "text";
18 }
19