Files
kiri-wchat/wchat/wx/Subject.php
T
2021-04-06 15:20:39 +08:00

26 lines
319 B
PHP

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