Total Complexity | 4 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
9 | class TouchWrapperComponent extends TouchableComponent implements \JsonSerializable |
||
10 | { |
||
11 | public const TYPE = APLComponentType::TOUCH_WRAPPER; |
||
12 | |||
13 | /** |
||
14 | * @param APLBaseComponent|null $item Single child item to display |
||
15 | * @param APLBaseComponent[]|null $items Array of child items to display |
||
16 | */ |
||
17 | 10 | public function __construct( |
|
22 | } |
||
23 | |||
24 | 6 | public function jsonSerialize(): array |
|
39 |