Files
dafuweng/app/service/BaseSmsServices.php
2026-03-02 13:44:38 +08:00

16 lines
250 B
PHP

<?php
namespace app\service;
/**
* 发送短信接口
*/
interface BaseSmsServices
{
/**
* 发送短信
* @param string $phone
* @param int $type
* @return mixed
*/
public function send(string $phone, int $type);
}