Total Complexity | 3 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class InputMaskIntegerField extends InputMaskNumericField |
||
14 | { |
||
15 | public function __construct($name, $title = null, $value = null) |
||
16 | { |
||
17 | parent::__construct($name, $title, $value); |
||
18 | $this->setAlias(self::ALIAS_INTEGER); |
||
19 | } |
||
20 | |||
21 | public function setValue($value, $data = null) |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * Create a new class for this field |
||
28 | */ |
||
29 | public function performReadonlyTransformation() |
||
33 | } |
||
34 | } |
||
35 |