| Total Complexity | 4 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 9 | class Renderable_time extends \Formularium\Renderable |
||
| 10 | { |
||
| 11 | use RenderableBuefyTrait; |
||
| 12 | |||
| 13 | public function viewable($value, Field $field, HTMLElement $previous): HTMLElement |
||
| 14 | { |
||
| 15 | return $previous; |
||
| 16 | } |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Subcall of wrapper editable() from RenderableMaterializeTrait |
||
| 20 | * |
||
| 21 | * @param mixed $value |
||
| 22 | * @param Field $field |
||
| 23 | * @param HTMLElement $previous |
||
| 24 | * @return HTMLElement |
||
| 25 | */ |
||
| 26 | public function _editable($value, Field $field, HTMLElement $previous): HTMLElement |
||
| 39 | } |
||
| 40 | } |
||
| 41 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.