You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
622 B
32 lines
622 B
<?php
|
|
|
|
/**
|
|
* 消息发送驱动接口
|
|
*/
|
|
|
|
namespace libraries\send;
|
|
|
|
Interface SendInterface {
|
|
|
|
/**
|
|
* 构建函数
|
|
* @param array $config 驱动配置
|
|
*/
|
|
public function __construct($config);
|
|
|
|
/**
|
|
* 推送消息
|
|
* @param string $to 收信人
|
|
* @param string $title 标题
|
|
* @param string $content 内容
|
|
* @param array $data 其他数据
|
|
* @return array
|
|
*/
|
|
public function push($to, $title, $content, $time = '', $data = array());
|
|
|
|
/**
|
|
* 获取错误信息
|
|
*/
|
|
public function getError();
|
|
|
|
}
|