b05e074456
Co-authored-by: ISMAIL MASSERAN <topaz@ISMAILs-Macbook.local> Co-authored-by: ISMAIL MASSERAN <topaz@Mac.dlinkrouter.local> Reviewed-on: #11
9 lines
136 B
PHP
9 lines
136 B
PHP
<?php
|
|
|
|
namespace Modules\Auth\Contracts;
|
|
|
|
interface SmsSender
|
|
{
|
|
public function send(string $phoneNumber, string $message): void;
|
|
}
|