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 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace ImovelZapAi\Visits\Application\Ports; |
| 6 | |
| 7 | use ImovelZapAi\Conversations\Infrastructure\Persistence\Eloquent\ContactModel; |
| 8 | use ImovelZapAi\Conversations\Infrastructure\Persistence\Eloquent\ConversationModel; |
| 9 | |
| 10 | interface VisitOutboundMessengerInterface |
| 11 | { |
| 12 | public function send( |
| 13 | string $tenantId, |
| 14 | ContactModel $contact, |
| 15 | string $body, |
| 16 | ?ConversationModel $conversation = null, |
| 17 | ): void; |
| 18 | } |