Total Complexity | 9 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 81.82% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
10 | trait ActionableComponentTrait |
||
11 | { |
||
12 | /** @var AbstractStandardCommand[]|null */ |
||
13 | public ?array $onFocus = null; |
||
14 | /** @var AbstractStandardCommand[]|null */ |
||
15 | public ?array $onBlur = null; |
||
16 | /** @var KeyHandler[]|null */ |
||
17 | public ?array $handleKeyDown = null; |
||
18 | /** @var KeyHandler[]|null */ |
||
19 | public ?array $handleKeyUp = null; |
||
20 | |||
21 | 47 | protected function serializeActionableProperties(): array |
|
44 |