Total Complexity | 5 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
7 | class ScrollCommand extends AbstractStandardCommand implements \JsonSerializable |
||
8 | { |
||
9 | public const TYPE = 'Scroll'; |
||
10 | |||
11 | /** |
||
12 | * @param string|null $componentId ID of the component to scroll |
||
13 | * @param int|null $distance Distance to scroll in pixels |
||
14 | * @param int|null $targetDuration Duration of the scroll animation in milliseconds |
||
15 | */ |
||
16 | 8 | public function __construct( |
|
22 | } |
||
23 | |||
24 | 5 | public function jsonSerialize(): array |
|
43 |