| 1 | <?php |
||
| 16 | class SendAttachment implements ShouldQueue |
||
| 17 | { |
||
| 18 | use InteractsWithQueue, Queueable, Dispatchable; |
||
| 19 | |||
| 20 | private $channel; |
||
| 21 | private $chat; |
||
| 22 | private $recipient; |
||
| 23 | private $attachment; |
||
| 24 | |||
| 25 | 3 | public function __construct(Channel $channel, Chat $chat, User $recipient, Attachment $attachment) |
|
| 32 | |||
| 33 | public function handle(): void |
||
| 38 | } |
||
| 39 |