25 lines
360 B
PHP
25 lines
360 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 $sendUrl = 'https://api.weixin.qq.com/cgi-bin/message/wxopen/template/send';
|
|
|
|
public function getUrl(): string
|
|
{
|
|
return $this->sendUrl;
|
|
}
|
|
|
|
}
|