| 1 | <?php |
||
| 11 | trait Transitions |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * Jump to another interaction. |
||
| 15 | * |
||
| 16 | * @param string $interaction |
||
| 17 | * |
||
| 18 | * @throws \InvalidArgumentException |
||
| 19 | */ |
||
| 20 | protected function jump(string $interaction): void |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Restart current intent or interaction. |
||
| 34 | */ |
||
| 35 | protected function restart(): void |
||
| 39 | } |
||
| 40 |