Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace ImovelZapAi\Visits\Application\Ports;
6
7use ImovelZapAi\Conversations\Infrastructure\Persistence\Eloquent\ContactModel;
8use ImovelZapAi\Conversations\Infrastructure\Persistence\Eloquent\ConversationModel;
9
10interface VisitOutboundMessengerInterface
11{
12    public function send(
13        string $tenantId,
14        ContactModel $contact,
15        string $body,
16        ?ConversationModel $conversation = null,
17    ): void;
18}