1 | <?php |
||
14 | abstract class Intent implements Conversable |
||
15 | { |
||
16 | use InteractsWithContext, |
||
17 | SendsMessages, |
||
18 | Authorization, |
||
19 | HasActivators, |
||
20 | Transitions; |
||
21 | |||
22 | /** |
||
23 | * Run intent. |
||
24 | */ |
||
25 | abstract public function run(): void; |
||
26 | |||
27 | /** |
||
28 | * Handle intent. |
||
29 | * |
||
30 | * @param Bot $bot |
||
31 | */ |
||
32 | 1 | public function handle(Bot $bot): void |
|
37 | } |
||
38 |