| Total Complexity | 4 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class telephone extends number |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @inheritdoc |
||
| 16 | */ |
||
| 17 | 4 | public function get_name() |
|
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @inheritdoc |
||
| 24 | */ |
||
| 25 | 3 | public function get_default_props() |
|
| 26 | { |
||
| 27 | return array( |
||
| 28 | 3 | 'min' => 0, |
|
| 29 | 3 | 'max' => 200, |
|
| 30 | 3 | 'size' => 10, |
|
| 31 | 3 | ); |
|
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @inheritdoc |
||
| 36 | */ |
||
| 37 | 2 | public function display_field(array $data, array $topic_data, $view_mode) |
|
| 40 | } |
||
| 41 | } |
||
| 42 |