| 1 | <?php | ||
| 16 | class Options implements OptionsInterface, \JsonSerializable | ||
| 17 | { | ||
| 18 | |||
| 19 | private $delay = 0; | ||
| 20 | |||
| 21 | /** | ||
| 22 | * @inheritdoc | ||
| 23 | */ | ||
| 24 | public function getDelay(): int | ||
| 28 | |||
| 29 | /** | ||
| 30 | * @inheritdoc | ||
| 31 | */ | ||
| 32 | public function setDelay(int $delay) | ||
| 37 | |||
| 38 | /** | ||
| 39 | * @inheritdoc | ||
| 40 | */ | ||
| 41 | public function toConfig(): array | ||
| 47 | |||
| 48 | /** | ||
| 49 | * @inheritdoc | ||
| 50 | */ | ||
| 51 | public function jsonSerialize() | ||
| 55 | } | ||
| 56 |