ComposerUpdate

This commit is contained in:
Anyon 2019-12-24 17:21:55 +08:00
parent 16e8738ee7
commit 74013d6d6c
2 changed files with 7 additions and 7 deletions

View File

@ -401,12 +401,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git", "url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "80a2dd413f62f0915afbb7be7ac43b8c8bd742d3" "reference": "7302647d33b217d38d1db1db605613bd561950da"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/80a2dd413f62f0915afbb7be7ac43b8c8bd742d3", "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/7302647d33b217d38d1db1db605613bd561950da",
"reference": "80a2dd413f62f0915afbb7be7ac43b8c8bd742d3", "reference": "7302647d33b217d38d1db1db605613bd561950da",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -426,7 +426,7 @@
"qiniu/php-sdk": "^7.2", "qiniu/php-sdk": "^7.2",
"topthink/framework": "5.1.*" "topthink/framework": "5.1.*"
}, },
"time": "2019-12-17T10:41:31+00:00", "time": "2019-12-20T07:32:21+00:00",
"type": "library", "type": "library",
"installation-source": "dist", "installation-source": "dist",
"autoload": { "autoload": {

View File

@ -49,7 +49,7 @@ class NodeService extends Service
$prefix = $this->request->module(); $prefix = $this->request->module();
$middle = '\\' . $this->nameTolower($this->app->request->controller()); $middle = '\\' . $this->nameTolower($this->app->request->controller());
$suffix = ($type === 'controller') ? '' : ('\\' . $this->app->request->action()); $suffix = ($type === 'controller') ? '' : ('\\' . $this->app->request->action());
return strtr($prefix . $middle . $suffix, '\\', '/'); return strtolower(strtr($prefix . $middle . $suffix, '\\', '/'));
} }
/** /**
@ -61,10 +61,10 @@ class NodeService extends Service
{ {
if (empty($node)) return $this->getCurrent(); if (empty($node)) return $this->getCurrent();
if (count($attrs = explode('/', $node)) === 1) { if (count($attrs = explode('/', $node)) === 1) {
return $this->getCurrent('controller') . "/{$node}"; return strtolower($this->getCurrent('controller') . "/{$node}");
} else { } else {
$attrs[1] = $this->nameTolower($attrs[1]); $attrs[1] = $this->nameTolower($attrs[1]);
return join('/', $attrs); return strtolower(join('/', $attrs));
} }
} }