| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | public function editable($value, Field $field, HTMLElement $previous): HTMLElement |
||
| 11 | { |
||
| 12 | $element = parent::editable($value, $field, $previous); |
||
| 13 | $input = $element->get('input')[0]; |
||
| 14 | $input->setTag('p'); |
||
| 15 | $input->setContent('Materialize does not have a datetime picker.'); |
||
| 16 | return $element; |
||
| 17 | } |
||
| 19 |