Files
kiri-wchat/wchat/wx/Subject.php
T
2020-04-30 22:25:50 +08:00

22 lines
278 B
PHP

<?php
namespace wchat\wx;
use wchat\common\Result;
class Subject extends \wchat\base\Subject
{
private $sendUrl = 'https://api.weixin.qq.com/cgi-bin/message/subscribe/send';
/**
* @return string
*/
public function getUrl(): string
{
return $this->sendUrl;
}
}