Viewing File: /home/xaimptsg/public_html/src/app/Sms/SmsGateway.php

<?php

namespace App\Sms;

interface SmsGateway
{
    public function send(array $credential, string $number, string $message);
}
Back to Directory