You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
499 B

1 year ago
  1. # Conversation
  2. Conversations can be used to create dialogues with users, to collect information in a "conversational" style.
  3. Look at the [`SurveyCommand`](SurveyCommand.php) to see how a conversation can be made.
  4. For conversations to work, you must add the code provided in [`GenericmessageCommand.php`](GenericmessageCommand.php) at the beginning of your custom `GenericmessageCommand::execute()` method.
  5. The [`CancelCommand`](CancelCommand.php) allows users to cancel any active conversation.