Total Complexity | 6 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
10 | class DoublePress extends AbstractGesture |
||
11 | { |
||
12 | /** |
||
13 | * @param AbstractStandardCommand[]|null $onDoublePress Commands to run on double press |
||
14 | * @param AbstractStandardCommand[]|null $onSinglePress Commands to run on single press |
||
15 | * @param AbstractStandardCommand[]|null $onCancel Commands to run when gesture is cancelled |
||
16 | * @param bool|null $when APL boolean expression controlling whether this gesture is active |
||
17 | */ |
||
18 | 5 | public function __construct( |
|
25 | } |
||
26 | |||
27 | 3 | public function jsonSerialize(): array |
|
42 |