| Total Complexity | 6 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 7 | class AutoPageCommand extends AbstractStandardCommand |
||
| 8 | { |
||
| 9 | public const TYPE = 'AutoPage'; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @param string|null $componentId The ID of the component to auto-page |
||
| 13 | * @param int|null $count Number of pages to advance |
||
| 14 | * @param int|null $duration Duration of the auto-paging in milliseconds |
||
| 15 | * @param int|null $transitionDuration Duration of each page transition in milliseconds |
||
| 16 | */ |
||
| 17 | 5 | public function __construct( |
|
| 24 | } |
||
| 25 | |||
| 26 | 3 | public function jsonSerialize(): array |
|
| 49 |