| 1 | <?php |
||
| 15 | class SendMessage implements ShouldQueue |
||
| 16 | { |
||
| 17 | use InteractsWithQueue, Queueable; |
||
| 18 | |||
| 19 | private $chat; |
||
| 20 | private $recipient; |
||
| 21 | private $text; |
||
| 22 | private $template; |
||
| 23 | |||
| 24 | public function __construct(Chat $chat, User $recipient, string $text = null, Template $template = null) |
||
| 35 | |||
| 36 | public function handle(): void |
||
| 40 | } |
||
| 41 |