diff --git a/application/admin/controller/Auth.php b/application/admin/controller/Auth.php
index bc2940362..c1467f34e 100644
--- a/application/admin/controller/Auth.php
+++ b/application/admin/controller/Auth.php
@@ -18,7 +18,7 @@ use library\Controller;
use think\Db;
/**
- * 权限管理
+ * 系统权限管理
* Class Auth
* @package app\admin\controller
*/
@@ -31,7 +31,7 @@ class Auth extends Controller
public $table = 'SystemAuth';
/**
- * 权限列表
+ * 系统权限管理
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
@@ -45,7 +45,7 @@ class Auth extends Controller
}
/**
- * 权限授权节点
+ * 权限配置节点
* @return mixed
* @throws \ReflectionException
* @throws \think\Exception
@@ -53,7 +53,7 @@ class Auth extends Controller
*/
public function apply()
{
- $this->title = '权限授权配置';
+ $this->title = '权限配置节点';
$auth = $this->request->post('id', '0');
switch (strtolower($this->request->post('action'))) {
case 'get': // 获取权限配置
@@ -88,7 +88,7 @@ class Auth extends Controller
}
/**
- * 权限添加
+ * 添加系统权限
* @return array|string
*/
public function add()
@@ -98,7 +98,7 @@ class Auth extends Controller
}
/**
- * 权限编辑
+ * 编辑系统权限
* @return array|string
*/
public function edit()
@@ -108,7 +108,7 @@ class Auth extends Controller
}
/**
- * 权限禁用
+ * 禁用系统权限
*/
public function forbid()
{
@@ -117,7 +117,7 @@ class Auth extends Controller
}
/**
- * 权限恢复
+ * 启用系统权限
*/
public function resume()
{
@@ -126,7 +126,7 @@ class Auth extends Controller
}
/**
- * 权限删除
+ * 删除系统权限
*/
public function del()
{
diff --git a/application/admin/controller/Config.php b/application/admin/controller/Config.php
index 201aa5155..a65af64d7 100644
--- a/application/admin/controller/Config.php
+++ b/application/admin/controller/Config.php
@@ -17,7 +17,7 @@ namespace app\admin\controller;
use library\Controller;
/**
- * 系统配置
+ * 系统参数配置
* Class Config
* @package app\admin\controller
*/
diff --git a/application/admin/controller/Log.php b/application/admin/controller/Log.php
index 47b6c38ec..37f09fcb7 100644
--- a/application/admin/controller/Log.php
+++ b/application/admin/controller/Log.php
@@ -31,7 +31,7 @@ class Log extends Controller
public $table = 'SystemLog';
/**
- * 日志列表
+ * 系统操作日志
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
@@ -59,7 +59,7 @@ class Log extends Controller
}
/**
- * 日志删除操作
+ * 删除系统日志
*/
public function del()
{
diff --git a/application/admin/controller/Login.php b/application/admin/controller/Login.php
index da735da62..77c498e19 100644
--- a/application/admin/controller/Login.php
+++ b/application/admin/controller/Login.php
@@ -63,7 +63,7 @@ class Login extends Controller
if (empty($user)) $this->error('登录账号或密码错误,请重新输入!');
if (empty($user['status'])) $this->error('账号已经被禁用,请联系管理!');
// 账号锁定消息
- $cache = cache('user_login_' . $user['username']);
+ $cache = cache("user_login_{$user['username']}");
if (is_array($cache) && !empty($cache['number']) && !empty($cache['time'])) {
if ($cache['number'] >= 10 && ($diff = $cache['time'] + 3600 - time()) > 0) {
list($m, $s, $info) = [floor($diff / 60), floor($diff % 60), ''];
@@ -77,7 +77,7 @@ class Login extends Controller
} elseif ($cache['number'] + 1 <= 10) {
$cache = ['time' => time(), 'number' => $cache['number'] + 1, 'geoip' => $this->request->ip()];
}
- cache('user_login_' . $user['username'], $cache);
+ cache("user_login_{$user['username']}", $cache);
if (($diff = 10 - $cache['number']) > 0) {
$this->error("登录账号或密码错误!
还有 {$diff} 次尝试机会,将锁定一小时内禁止登录!
");
} else {
@@ -86,7 +86,7 @@ class Login extends Controller
}
}
// 登录成功并更新账号
- cache('user_login_' . $user['username'], null);
+ cache("user_login_{$user['username']}", null);
Db::name('SystemUser')->where(['id' => $user['id']])->update([
'login_at' => Db::raw('now()'),
'login_ip' => $this->request->ip(),
@@ -94,7 +94,7 @@ class Login extends Controller
]);
session('user', $user);
session('loginskey', null);
- empty($user['authorize']) || \app\admin\service\Auth::applyNode();
+ if (!empty($user['authorize'])) \app\admin\service\Auth::applyNode();
_syslog('系统管理', '用户登录系统成功');
$this->success('登录成功,正在进入系统...', url('@admin'));
}
diff --git a/application/admin/controller/Menu.php b/application/admin/controller/Menu.php
index 4309db22e..0d48782be 100644
--- a/application/admin/controller/Menu.php
+++ b/application/admin/controller/Menu.php
@@ -33,7 +33,7 @@ class Menu extends Controller
protected $table = 'SystemMenu';
/**
- * 系统菜单显示
+ * 系统菜单管理
*/
public function index()
{
@@ -57,18 +57,18 @@ class Menu extends Controller
}
/**
- * 编辑菜单
+ * 添加系统菜单
*/
- public function edit()
+ public function add()
{
$this->applyCsrfToken();
$this->_form($this->table, 'form');
}
/**
- * 添加菜单
+ * 编辑系统菜单
*/
- public function add()
+ public function edit()
{
$this->applyCsrfToken();
$this->_form($this->table, 'form');
@@ -105,7 +105,7 @@ class Menu extends Controller
}
/**
- * 启用菜单
+ * 启用系统菜单
*/
public function resume()
{
@@ -114,7 +114,7 @@ class Menu extends Controller
}
/**
- * 禁用菜单
+ * 禁用系统菜单
*/
public function forbid()
{
@@ -123,7 +123,7 @@ class Menu extends Controller
}
/**
- * 删除菜单
+ * 删除系统菜单
*/
public function del()
{
diff --git a/application/admin/controller/Message.php b/application/admin/controller/Message.php
index 608eca3d3..0fbc92062 100644
--- a/application/admin/controller/Message.php
+++ b/application/admin/controller/Message.php
@@ -31,7 +31,7 @@ class Message extends Controller
protected $table = 'SystemMessage';
/***
- * 获取消息列表
+ * 系统消息管理
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
@@ -45,7 +45,7 @@ class Message extends Controller
}
/**
- * 消息状态
+ * 设置消息状态
*/
public function state()
{
@@ -53,7 +53,7 @@ class Message extends Controller
}
/**
- * 删除消息
+ * 删除系统消息
*/
public function del()
{
@@ -75,7 +75,7 @@ class Message extends Controller
}
/**
- * 系统消息开关处理
+ * 设置消息开关
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
diff --git a/application/admin/controller/Node.php b/application/admin/controller/Node.php
index 781827037..0a41bba9c 100644
--- a/application/admin/controller/Node.php
+++ b/application/admin/controller/Node.php
@@ -32,7 +32,7 @@ class Node extends Controller
protected $table = 'SystemNode';
/**
- * 显示节点列表
+ * 系统节点管理
* @throws \ReflectionException
*/
public function index()
@@ -50,7 +50,7 @@ class Node extends Controller
}
/**
- * 清理无效的节点数据
+ * 清理无效的节点
* @throws \ReflectionException
* @throws \think\Exception
* @throws \think\exception\PDOException
@@ -65,7 +65,7 @@ class Node extends Controller
}
/**
- * 更新数据记录
+ * 更新节点数据
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
diff --git a/application/admin/controller/Queue.php b/application/admin/controller/Queue.php
index 413d56e2c..8a5eacc5d 100644
--- a/application/admin/controller/Queue.php
+++ b/application/admin/controller/Queue.php
@@ -19,7 +19,7 @@ use think\Console;
use think\Db;
/**
- * 系统消息任务管理
+ * 系统消息任务
* Class Queue
* @package app\admin\controller
*/
@@ -32,7 +32,7 @@ class Queue extends Controller
protected $table = 'SystemJobsLog';
/**
- * 任务列表
+ * 系统消息任务
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
diff --git a/application/admin/controller/User.php b/application/admin/controller/User.php
index 9fb41e2e7..fc0121312 100644
--- a/application/admin/controller/User.php
+++ b/application/admin/controller/User.php
@@ -19,7 +19,7 @@ use library\tools\Data;
use think\Db;
/**
- * 系统用户管理控制器
+ * 系统用户管理
* Class User
* @package app\admin\controller
* @author Anyon
@@ -35,7 +35,7 @@ class User extends Controller
public $table = 'SystemUser';
/**
- * 用户列表
+ * 系统用户管理
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
@@ -49,7 +49,7 @@ class User extends Controller
}
/**
- * 授权管理
+ * 用户授权管理
* @return mixed
*/
public function auth()
@@ -59,7 +59,7 @@ class User extends Controller
}
/**
- * 用户添加
+ * 添加系统用户
* @return mixed
*/
public function add()
@@ -69,7 +69,7 @@ class User extends Controller
}
/**
- * 用户编辑
+ * 编辑系统用户
* @return mixed
*/
public function edit()
@@ -79,7 +79,7 @@ class User extends Controller
}
/**
- * 用户密码修改
+ * 修改用户密码
* @return mixed
* @throws \think\Exception
* @throws \think\exception\PDOException
@@ -107,7 +107,7 @@ class User extends Controller
}
/**
- * 表单数据默认处理
+ * 表单数据处理
* @param array $data
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
@@ -128,7 +128,7 @@ class User extends Controller
}
/**
- * 删除用户
+ * 删除系统用户
*/
public function del()
{
@@ -140,7 +140,7 @@ class User extends Controller
}
/**
- * 用户禁用
+ * 禁用系统用户
*/
public function forbid()
{
@@ -152,7 +152,7 @@ class User extends Controller
}
/**
- * 用户禁用
+ * 启用系统用户
*/
public function resume()
{
diff --git a/application/admin/view/index/main.html b/application/admin/view/index/main.html
index c2c258b69..610b54924 100644
--- a/application/admin/view/index/main.html
+++ b/application/admin/view/index/main.html
@@ -22,12 +22,10 @@
framework |
- ThinkAdmin 版本 |
+ ThinkPHP版本 |
{$think_ver} |
在线体验 |
-
- http://framework.thinkadmin.top
- |
+ http://framework.thinkadmin.top |
服务器操作系统 |
@@ -43,21 +41,13 @@
WEB运行环境 |
{:php_sapi_name()} |
项目地址 |
-
-
- https://github.com/zoujingli/framework
-
- |
+ https://github.com/zoujingli/framework |
MySQL数据库版本 |
{$mysql_ver} |
BUG反馈 |
-
-
- https://github.com/zoujingli/framework/issues
-
- |
+ https://github.com/zoujingli/framework/issues |
运行PHP版本 |
diff --git a/application/service/controller/Config.php b/application/service/controller/Config.php
index c56942b18..19238bee2 100644
--- a/application/service/controller/Config.php
+++ b/application/service/controller/Config.php
@@ -31,10 +31,9 @@ class Config extends Controller
* @var string
*/
public $table = 'WechatServiceConfig';
-
+
/**
- * 微信基础参数配置
- * @return array|string
+ * 开放平台参数配置
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
diff --git a/application/service/controller/Index.php b/application/service/controller/Index.php
index 10e95c082..fb689fc39 100644
--- a/application/service/controller/Index.php
+++ b/application/service/controller/Index.php
@@ -27,13 +27,13 @@ class Index extends Controller
{
/**
- * 定义当前操作表名
+ * 绑定数据表
* @var string
*/
public $table = 'WechatServiceConfig';
/**
- * 微信基础参数配置
+ * 授权公众号管理
* @return string
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
@@ -52,7 +52,7 @@ class Index extends Controller
}
/**
- * 清理接口调用测试
+ * 清理调用次数
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
*/
@@ -70,7 +70,7 @@ class Index extends Controller
}
/**
- * 同步获取权限
+ * 同步指定授权公众号
*/
public function sync()
{
@@ -92,7 +92,7 @@ class Index extends Controller
}
/**
- * 同步获取所有授权公众号记录
+ * 同步所有授权公众号
*/
public function syncall()
{
@@ -118,7 +118,7 @@ class Index extends Controller
}
/**
- * 删除微信
+ * 删除公众号授权
*/
public function del()
{
@@ -127,7 +127,7 @@ class Index extends Controller
}
/**
- * 微信禁用
+ * 禁用公众号授权
*/
public function forbid()
{
@@ -136,7 +136,7 @@ class Index extends Controller
}
/**
- * 微信启用
+ * 启用公众号授权
*/
public function resume()
{
diff --git a/application/store/controller/Page.php b/application/store/controller/Page.php
deleted file mode 100644
index 2463efbf6..000000000
--- a/application/store/controller/Page.php
+++ /dev/null
@@ -1,136 +0,0 @@
-title = '商城页面管理';
- $this->_query($this->table)->order('sort asc,id desc')->page();
- }
-
- /**
- * 数据列表处理
- * @param array $data
- */
- protected function _page_filter(&$data)
- {
- foreach ($data as &$vo) {
- $vo['one'] = json_decode($vo['one'], true);
- $vo['mul'] = json_decode($vo['mul'], true);
- }
- }
-
- /**
- * 添加页面
- */
- public function add()
- {
- $this->title = '添加商城页面';
- $this->_form($this->table, 'form');
- }
-
- /**
- * 编辑页面
- */
- public function edit()
- {
- $this->title = '编辑商城页面';
- $this->_form($this->table, 'form');
- }
-
- /**
- * 表单数据处理
- * @param array $post
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- protected function _form_filter(&$post = [])
- {
- if ($this->request->isGet()) {
- $where = ['is_deleted' => '0', 'status' => '1'];
- $this->goodsList = Db::name('StoreGoods')->where($where)->order('sort asc,id desc')->select();
- $maps = ['普通商品', '临时礼包', '会员礼包'];
- foreach ($this->goodsList as &$vo) {
- $vo['title'] = (isset($maps[$vo['vip_mod']]) ? "【{$maps[$vo['vip_mod']]}】" : '【类型异常】') . $vo['title'];
- }
- if (isset($post['one'])) $post['one'] = json_decode($post['one'], true);
- if (isset($post['mul'])) $post['mul'] = json_decode($post['mul'], true);
- } else foreach (['one', 'mul'] as $type) {
- if (empty($post[$type])) $post[$type] = [];
- $post[$type] = json_encode($post[$type], JSON_UNESCAPED_UNICODE);
- }
- }
-
- /**
- * 表单数据结果处理
- * @param boolean $result
- */
- protected function _form_result($result)
- {
- if ($result) {
- $this->success('页面更新成功!', url('@admin') . '#' . url('@store/page/index'));
- }
- }
-
- /**
- * 禁用页面
- */
- public function forbid()
- {
- $this->_save($this->table, ['status' => '0']);
- }
-
- /**
- * 启用页面
- */
- public function resume()
- {
- $this->_save($this->table, ['status' => '1']);
- }
-
- /**
- * 删除页面
- */
- public function del()
- {
- $this->_delete($this->table);
- }
-
-}
\ No newline at end of file
diff --git a/application/store/controller/api/Page.php b/application/store/controller/api/Page.php
deleted file mode 100644
index 02e18177f..000000000
--- a/application/store/controller/api/Page.php
+++ /dev/null
@@ -1,72 +0,0 @@
-field('title,type,one,mul')->where(['status' => '1'])->order('sort asc,id desc')->select();
- foreach ($list as &$vo) {
- $vo['one'] = json_decode($vo['one'], true);
- $vo['mul'] = json_decode($vo['mul'], true);
- if ($vo['type'] === 'one') unset($vo['mul']);
- if ($vo['type'] === 'mul') unset($vo['one']);
- }
- $this->success('获取页面列表成功!', ['list' => $this->build($list)]);
- }
-
- /**
- * 数据列表处理
- * @param array $data
- * @param array $goodsId
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- protected function build($data = [], $goodsId = [])
- {
- foreach ($data as $vo) if (isset($vo['mul'])) {
- $goodsId = array_unique(array_merge($goodsId, $vo['mul']['goods']));
- }
- $goodsList = Db::name('StoreGoods')->field('id,title,logo')->whereIn('id', $goodsId)->select();
- $field = 'goods_id,goods_spec,price_market,price_selling,number_sales,number_stock,number_virtual';
- $goodsLists = Db::name('StoreGoodsList')->field($field)->where(['status' => '1'])->whereIn('goods_id', $goodsId)->select();
- foreach ($goodsList as &$vo) {
- $vo['list'] = [];
- foreach ($goodsLists as $v) if ($vo['id'] === $v['goods_id']) $vo['list'][] = $v;
- }
- foreach ($data as &$vo) if (isset($vo['mul'])) {
- foreach ($vo['mul']['goods'] as &$g) foreach ($goodsList as $v) if ($g == $v['id']) $g = $v;
- }
- return $data;
- }
-}
\ No newline at end of file
diff --git a/application/store/view/page/form.html b/application/store/view/page/form.html
deleted file mode 100644
index 80e11327e..000000000
--- a/application/store/view/page/form.html
+++ /dev/null
@@ -1,158 +0,0 @@
-{extend name='admin@main'}
-
-{block name="content"}
-
-
-{/block}
-
-{block name='script''}
-
-
-{/block}
\ No newline at end of file
diff --git a/application/store/view/page/index.html b/application/store/view/page/index.html
deleted file mode 100644
index 83c9f5a9f..000000000
--- a/application/store/view/page/index.html
+++ /dev/null
@@ -1,64 +0,0 @@
-{extend name='admin@main'}
-
-{block name="button"}
-
-
-
-
-
-
-{/block}
-
-{block name="content"}
-
-
-{empty name='list'}没有记录哦{else}{$pagehtml|raw|default=''}{/empty}
-
-{/block}
\ No newline at end of file
diff --git a/application/wechat/controller/Fans.php b/application/wechat/controller/Fans.php
index 953d6694e..e4c86e51d 100644
--- a/application/wechat/controller/Fans.php
+++ b/application/wechat/controller/Fans.php
@@ -50,7 +50,7 @@ class Fans extends Controller
}
/**
- * 微信粉丝列表处理
+ * 列表数据处理
* @param array $data
*/
protected function _index_page_filter(array &$data)
@@ -87,7 +87,7 @@ class Fans extends Controller
}
/**
- *批量取消拉黑粉丝
+ * 取消拉黑粉丝
*/
public function delBlack()
{
@@ -121,7 +121,7 @@ class Fans extends Controller
}
/**
- * 删除粉丝
+ * 删除粉丝信息
*/
public function del()
{
diff --git a/application/wechat/controller/Keys.php b/application/wechat/controller/Keys.php
index fcc6e9b4b..626260434 100644
--- a/application/wechat/controller/Keys.php
+++ b/application/wechat/controller/Keys.php
@@ -42,7 +42,7 @@ class Keys extends Controller
];
/**
- * 显示关键字列表
+ * 回复规则管理
* @return array|string
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
diff --git a/application/wechat/controller/Menu.php b/application/wechat/controller/Menu.php
index 4eb766811..2abb3ac04 100644
--- a/application/wechat/controller/Menu.php
+++ b/application/wechat/controller/Menu.php
@@ -14,7 +14,6 @@
namespace app\wechat\controller;
-use app\admin\service\Log;
use app\wechat\service\Wechat;
use library\Controller;
use think\Db;
@@ -44,7 +43,7 @@ class Menu extends Controller
];
/**
- * 显示菜单列表
+ * 微信菜单管理
* @return array
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
@@ -65,7 +64,7 @@ class Menu extends Controller
}
/**
- * 微信菜单编辑
+ * 编辑微信菜单
*/
public function edit()
{
@@ -91,6 +90,7 @@ class Menu extends Controller
}
/**
+ * 菜单数据处理
* @param array $list
* @return mixed
*/
@@ -113,7 +113,7 @@ class Menu extends Controller
}
/**
- * 单个微信菜单数据过滤处理
+ * 单个微信菜单数据处理
* @param array $item
* @return array
*/
@@ -140,7 +140,7 @@ class Menu extends Controller
}
/**
- * 取消菜单
+ * 取消微信菜单
*/
public function cancel()
{
diff --git a/application/wechat/controller/News.php b/application/wechat/controller/News.php
index 450a8a846..ba172fb14 100644
--- a/application/wechat/controller/News.php
+++ b/application/wechat/controller/News.php
@@ -33,7 +33,7 @@ class News extends Controller
protected $table = 'WechatNews';
/**
- * 图文列表
+ * 微信图文管理
* @return array|string
*/
public function index()
@@ -77,7 +77,7 @@ class News extends Controller
}
/**
- * 添加图文
+ * 添加微信图文
* @return string
* @throws \think\Exception
* @throws \think\exception\PDOException
@@ -99,7 +99,7 @@ class News extends Controller
}
/**
- * 编辑图文
+ * 编辑微信图文
* @return string
* @throws \think\Exception
* @throws \think\exception\PDOException
@@ -150,7 +150,7 @@ class News extends Controller
}
/**
- * 删除用户
+ * 删除微信图文
*/
public function del()
{
diff --git a/vendor/autoload.php b/vendor/autoload.php
index 16d2becae..ef339e09a 100644
--- a/vendor/autoload.php
+++ b/vendor/autoload.php
@@ -4,4 +4,4 @@
require_once __DIR__ . '/composer/autoload_real.php';
-return ComposerAutoloaderInita2a5ca7b097a9d41d2230b028e215f7a::getLoader();
+return ComposerAutoloaderInitdd4cd514a6f8c3f392f6ee5b28563c79::getLoader();
diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php
index dca7e4c12..66662b23e 100644
--- a/vendor/composer/autoload_real.php
+++ b/vendor/composer/autoload_real.php
@@ -2,7 +2,7 @@
// autoload_real.php @generated by Composer
-class ComposerAutoloaderInita2a5ca7b097a9d41d2230b028e215f7a
+class ComposerAutoloaderInitdd4cd514a6f8c3f392f6ee5b28563c79
{
private static $loader;
@@ -19,15 +19,15 @@ class ComposerAutoloaderInita2a5ca7b097a9d41d2230b028e215f7a
return self::$loader;
}
- spl_autoload_register(array('ComposerAutoloaderInita2a5ca7b097a9d41d2230b028e215f7a', 'loadClassLoader'), true, true);
+ spl_autoload_register(array('ComposerAutoloaderInitdd4cd514a6f8c3f392f6ee5b28563c79', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
- spl_autoload_unregister(array('ComposerAutoloaderInita2a5ca7b097a9d41d2230b028e215f7a', 'loadClassLoader'));
+ spl_autoload_unregister(array('ComposerAutoloaderInitdd4cd514a6f8c3f392f6ee5b28563c79', 'loadClassLoader'));
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
if ($useStaticLoader) {
require_once __DIR__ . '/autoload_static.php';
- call_user_func(\Composer\Autoload\ComposerStaticInita2a5ca7b097a9d41d2230b028e215f7a::getInitializer($loader));
+ call_user_func(\Composer\Autoload\ComposerStaticInitdd4cd514a6f8c3f392f6ee5b28563c79::getInitializer($loader));
} else {
$map = require __DIR__ . '/autoload_namespaces.php';
foreach ($map as $namespace => $path) {
@@ -48,19 +48,19 @@ class ComposerAutoloaderInita2a5ca7b097a9d41d2230b028e215f7a
$loader->register(true);
if ($useStaticLoader) {
- $includeFiles = Composer\Autoload\ComposerStaticInita2a5ca7b097a9d41d2230b028e215f7a::$files;
+ $includeFiles = Composer\Autoload\ComposerStaticInitdd4cd514a6f8c3f392f6ee5b28563c79::$files;
} else {
$includeFiles = require __DIR__ . '/autoload_files.php';
}
foreach ($includeFiles as $fileIdentifier => $file) {
- composerRequirea2a5ca7b097a9d41d2230b028e215f7a($fileIdentifier, $file);
+ composerRequiredd4cd514a6f8c3f392f6ee5b28563c79($fileIdentifier, $file);
}
return $loader;
}
}
-function composerRequirea2a5ca7b097a9d41d2230b028e215f7a($fileIdentifier, $file)
+function composerRequiredd4cd514a6f8c3f392f6ee5b28563c79($fileIdentifier, $file)
{
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
require $file;
diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php
index 33009c809..54506cff1 100644
--- a/vendor/composer/autoload_static.php
+++ b/vendor/composer/autoload_static.php
@@ -4,7 +4,7 @@
namespace Composer\Autoload;
-class ComposerStaticInita2a5ca7b097a9d41d2230b028e215f7a
+class ComposerStaticInitdd4cd514a6f8c3f392f6ee5b28563c79
{
public static $files = array (
'841780ea2e1d6545ea3a253239d59c05' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/functions.php',
@@ -346,9 +346,9 @@ class ComposerStaticInita2a5ca7b097a9d41d2230b028e215f7a
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
- $loader->prefixLengthsPsr4 = ComposerStaticInita2a5ca7b097a9d41d2230b028e215f7a::$prefixLengthsPsr4;
- $loader->prefixDirsPsr4 = ComposerStaticInita2a5ca7b097a9d41d2230b028e215f7a::$prefixDirsPsr4;
- $loader->classMap = ComposerStaticInita2a5ca7b097a9d41d2230b028e215f7a::$classMap;
+ $loader->prefixLengthsPsr4 = ComposerStaticInitdd4cd514a6f8c3f392f6ee5b28563c79::$prefixLengthsPsr4;
+ $loader->prefixDirsPsr4 = ComposerStaticInitdd4cd514a6f8c3f392f6ee5b28563c79::$prefixDirsPsr4;
+ $loader->classMap = ComposerStaticInitdd4cd514a6f8c3f392f6ee5b28563c79::$classMap;
}, null, ClassLoader::class);
}