Files
kiri-wchat/wchat/qq/Subject.php
T

27 lines
333 B
PHP
Raw Normal View History

2019-11-11 18:14:47 +08:00
<?php
2020-03-05 12:41:49 +08:00
namespace wchat\qq;
2019-11-11 18:14:47 +08:00
2020-03-05 12:41:49 +08:00
use wchat\common\Result;
2019-11-11 18:14:47 +08:00
2020-04-30 22:25:50 +08:00
/**
* Class Subject
* @package wchat\qq
*/
class Subject extends \wchat\base\Subject
2019-11-11 18:14:47 +08:00
{
private $sendUrl = 'https://api.q.qq.com/api/json/subscribe/SendSubscriptionMessage';
/**
2020-04-30 22:25:50 +08:00
* @return string
2019-11-11 18:14:47 +08:00
*/
2020-04-30 22:25:50 +08:00
public function getUrl(): string
2019-11-11 18:14:47 +08:00
{
2020-04-30 22:25:50 +08:00
return $this->getUrl();
2019-11-11 18:14:47 +08:00
}
}