Files
kiri-wchat/wchat/wx/Subject.php
T

22 lines
278 B
PHP
Raw Normal View History

2019-10-29 10:20:12 +08:00
<?php
2020-03-05 12:41:49 +08:00
namespace wchat\wx;
2019-10-29 10:20:12 +08:00
2020-03-05 12:41:49 +08:00
use wchat\common\Result;
2019-11-11 18:14:47 +08:00
2020-04-30 22:25:50 +08:00
class Subject extends \wchat\base\Subject
2019-10-29 10:20:12 +08:00
{
private $sendUrl = 'https://api.weixin.qq.com/cgi-bin/message/subscribe/send';
/**
2020-04-30 22:25:50 +08:00
* @return string
2019-10-29 10:20:12 +08:00
*/
2020-04-30 22:25:50 +08:00
public function getUrl(): string
2019-10-29 10:20:12 +08:00
{
2020-04-30 22:25:50 +08:00
return $this->sendUrl;
2019-10-29 10:20:12 +08:00
}
}