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

25 lines
370 B
PHP

<?php
/**
* Created by PhpStorm.
* User: whwyy
* Date: 2018/4/8 0008
* Time: 9:49
*/
namespace wchat\wx;
/**
* Class Template
* @package wchat\wx
*/
class Template extends \wchat\base\Template
{
private string $sendUrl = 'https://api.weixin.qq.com/cgi-bin/message/wxopen/template/send';
public function getUrl(): string
{
return $this->sendUrl;
}
}