|
<?php
|
|
|
|
namespace App\Services\OtpSender;
|
|
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
class LogOtpSender implements OtpSenderInterface
|
|
{
|
|
public function sendWhatsApp(string $phoneE164, string $message): void
|
|
{
|
|
Log::info('[PXG OTP][WA_LOG_DRIVER] '.$phoneE164.' :: '.$message);
|
|
}
|
|
}
|