b05e074456
Co-authored-by: ISMAIL MASSERAN <topaz@ISMAILs-Macbook.local> Co-authored-by: ISMAIL MASSERAN <topaz@Mac.dlinkrouter.local> Reviewed-on: #11
18 lines
377 B
PHP
18 lines
377 B
PHP
<?php
|
|
|
|
namespace Modules\Auth\Services;
|
|
|
|
use Illuminate\Support\Facades\Log;
|
|
use Modules\Auth\Contracts\SmsSender;
|
|
|
|
class LogSmsSender implements SmsSender
|
|
{
|
|
public function send(string $phoneNumber, string $message): void
|
|
{
|
|
Log::info('SMS sent (log driver)', [
|
|
'phone_number' => $phoneNumber,
|
|
'message' => $message,
|
|
]);
|
|
}
|
|
}
|