Files
kiri-wchat/wchat/qq/Subject.php
T
2020-09-03 16:12:50 +08:00

27 lines
332 B
PHP

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