26 lines
334 B
PHP
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;
|
|
}
|
|
}
|