22 lines
278 B
PHP
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;
|
|
}
|
|
}
|