| 1 | <?php |
||
| 11 | trait Transitions |
||
| 12 | { |
||
| 13 | /** @var Bot */ |
||
| 14 | protected $bot; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Whether any transition run. |
||
| 18 | * |
||
| 19 | * @var bool |
||
| 20 | */ |
||
| 21 | protected $transitioned = false; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Jump to another interaction. |
||
| 25 | * |
||
| 26 | * @param string $interaction |
||
| 27 | * |
||
| 28 | * @throws \InvalidArgumentException |
||
| 29 | */ |
||
| 30 | protected function jump(string $interaction): void |
||
| 44 | } |
||
| 45 |