PXG_2026_API/app/Services/OtpSender/OtpSenderInterface.php

9 lines
151 B
PHP

<?php
namespace App\Services\OtpSender;
interface OtpSenderInterface
{
public function sendWhatsApp(string $phoneE164, string $message): void;
}