- 更新IP数据库

- 更新企业微信服务
v6 v6.0.66
Chaim 4 years ago
parent f94c60fabd
commit 8addce2907

@ -43,8 +43,7 @@
"qiniu/php-sdk": "^7.2",
"upyun/sdk": "^3.4",
"netease/nos-php-sdk": "^1.0",
"aws/aws-sdk-php": "^3.142",
"liguangchun/qyweixin-grouprobot": "^1.0"
"aws/aws-sdk-php": "^3.142"
},
"require-dev": {
"symfony/var-dumper": "^4.2"

Binary file not shown.

@ -16,8 +16,6 @@
namespace DtApp\ThinkLibrary\service\wechat;
use DtApp\Notice\QyWeiXin\QyWeXinException;
use DtApp\Notice\QyWeiXin\Send;
use DtApp\ThinkLibrary\exception\DtaException;
use DtApp\ThinkLibrary\Service;
use DtApp\ThinkLibrary\service\curl\HttpService;
@ -52,17 +50,16 @@ class QyService extends Service
* 发送文本消息
* @param string $content 消息内容
* @return bool
* @throws DtaException|QyWeXinException
* @throws DtaException
*/
public function text(string $content = '')
{
$this->msgType = 'text';
if (empty($this->key)) throw new DtaException("请检查KEY");
$config = [
'key' => $this->key
];
$qywx = new Send($config);
return $qywx->text($content);
return $this->sendMsg([
'text' => [
'content' => $content,
],
]);
}
/**
@ -70,17 +67,15 @@ class QyService extends Service
* @param string $content 消息内容
* @return bool
* @throws DtaException
* @throws QyWeXinException
*/
public function markdown(string $content = '')
{
$this->msgType = 'markdown';
if (empty($this->key)) throw new DtaException("请检查KEY");
$config = [
'key' => $this->key
];
$qywx = new Send($config);
return $qywx->text($content);
return $this->sendMsg([
'markdown' => [
'content' => $content,
],
]);
}
/**

Loading…
Cancel
Save