Conditions | 3 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
27 | public function _editable($value, Field $field, HTMLNode $previous): HTMLNode |
||
28 | { |
||
29 | // add extra classes |
||
30 | $previous->walk( |
||
31 | function ($e) { |
||
32 | if ($e instanceof HTMLNode) { |
||
33 | if ($e->getTag() === 'input') { |
||
34 | $e->setTag('v-time-picker'); |
||
35 | } |
||
36 | } |
||
37 | } |
||
38 | ); |
||
39 | return $previous; |
||
40 | } |
||
42 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.