28 lines
395 B
PHP
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;
|
|
}
|
|
} |