| 1 | <?php |
||
| 10 | abstract class SlashCommandResponseJob implements ShouldQueue, HandlesSlashCommand |
||
| 11 | { |
||
| 12 | /** @var \Spatie\SlashCommand\SlashCommandData */ |
||
| 13 | public $slashCommandData; |
||
| 14 | |||
| 15 | public function getSlashCommandResponse(): SlashCommandResponse |
||
| 19 | |||
| 20 | public function setSlashCommandResponse(SlashCommandData $slashCommandData) |
||
| 26 | |||
| 27 | public function respondToSlack(string $text): SlashCommandResponse |
||
| 31 | |||
| 32 | public function getSlashCommandData(): SlashCommandData |
||
| 36 | |||
| 37 | abstract public function handle(); |
||
| 38 | } |
||
| 39 |