Closes Module 1: 9 auth endpoints under /api/v1/auth, OTP via SMS (Semaphore + log + fake drivers), role middleware, role + admin seeders, 27 feature tests passing. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
9 lines
127 B
PHP
9 lines
127 B
PHP
<?php
|
|
|
|
namespace App\Services\Sms;
|
|
|
|
interface SmsService
|
|
{
|
|
public function send(string $to, string $message): SmsResult;
|
|
}
|