Files
kiri-wchat/wchat/wx/Subject.php
T
2020-11-14 03:04:25 +08:00

26 lines
334 B
PHP

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