Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class HiddenField extends FormField |
||
8 | { |
||
9 | protected $type = 'hidden'; |
||
10 | |||
11 | /** |
||
12 | * HiddenField constructor. |
||
13 | */ |
||
14 | public function __construct() |
||
15 | { |
||
16 | parent::__construct(''); |
||
17 | } |
||
18 | |||
19 | /** |
||
20 | * Determines whether the field is using its own markup. |
||
21 | * |
||
22 | * @return bool |
||
23 | */ |
||
24 | public function usingOwnMarkup() |
||
27 | } |
||
28 | } |
||
29 |