Files
elcaribe/desarrollo/app/Contracts/SendSms.php

12 lines
201 B
PHP

<?php
namespace App\Contracts;
interface SendSms {
/**
* Apply four given value to send SMS.
* @param mixed $value
*/
public function send($to, $from, $text, $template_id);
}