| 1 | <?php |
||
| 15 | class SendRequest implements ShouldQueue |
||
| 16 | { |
||
| 17 | use InteractsWithQueue, Queueable, Dispatchable; |
||
| 18 | |||
| 19 | private $channel; |
||
| 20 | private $chat; |
||
| 21 | private $recipient; |
||
| 22 | private $endpoint; |
||
| 23 | private $parameters; |
||
| 24 | |||
| 25 | 2 | public function __construct(Channel $channel, Chat $chat, User $recipient, string $endpoint, array $parameters = []) |
|
| 33 | |||
| 34 | public function handle(): void |
||
| 39 | } |
||
| 40 |