Files
agent_test/inc/Hura8/Interfaces/iSMS.php

17 lines
216 B
PHP
Raw Normal View History

2026-03-07 10:26:20 +07:00
<?php
/**
* Created by Glee Ltd.
* User: Hieu
* Date: 10-Oct-18
* Time: 11:24 AM
* Description:
*/
namespace Hura8\Interfaces;
interface iSMS
{
public function send($mobile, $content, $debug = false);
}