cxgj/cxe/wechat/src/Wechat/Base.php
2023-11-27 09:45:13 +08:00

28 lines
395 B
PHP

<?php
/**
* @author Any
* @description Do it yourself.
* @date 2018-6-21 21:42:03
* @version 1.0.0
*/
namespace Wechat;
abstract class Base
{
/**
* 微信组件
*
* @var Wechat
*/
protected $wechat;
/**
* @param Wechat $wechat
*/
public function __construct($wechat)
{
$this->wechat = $wechat;
}
}