| Total Complexity | 6 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 10 | class LongPress extends AbstractGesture |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @param AbstractStandardCommand[]|null $onLongPressStart Commands to run when long press starts |
||
| 14 | * @param AbstractStandardCommand[]|null $onLongPressEnd Commands to run when long press ends |
||
| 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 |