ComposerUpdate

This commit is contained in:
Anyon 2020-10-10 14:53:22 +08:00
parent f18548457a
commit bf5e9452b2
3 changed files with 6 additions and 6 deletions

View File

@ -833,12 +833,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git", "url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "0562b08dbf6ac48d4d811711e7641b57e290add8" "reference": "c233ebc4db95c154a297a1ba3b915826937ec2a0"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/0562b08dbf6ac48d4d811711e7641b57e290add8", "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/c233ebc4db95c154a297a1ba3b915826937ec2a0",
"reference": "0562b08dbf6ac48d4d811711e7641b57e290add8", "reference": "c233ebc4db95c154a297a1ba3b915826937ec2a0",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -855,7 +855,7 @@
"ext-mbstring": "*", "ext-mbstring": "*",
"topthink/framework": "^6.0" "topthink/framework": "^6.0"
}, },
"time": "2020-10-10T03:39:46+00:00", "time": "2020-10-10T06:38:45+00:00",
"type": "library", "type": "library",
"extra": { "extra": {
"think": { "think": {

2
vendor/services.php vendored
View File

@ -1,5 +1,5 @@
<?php <?php
// This file is automatically generated at:2020-10-10 12:28:45 // This file is automatically generated at:2020-10-10 14:50:33
declare (strict_types = 1); declare (strict_types = 1);
return array ( return array (
0 => 'think\\admin\\Library', 0 => 'think\\admin\\Library',

View File

@ -104,7 +104,7 @@ class JsonRpcServer
$params[] = ($type ? "{$type} $" : '$') . $parameter->getName(); $params[] = ($type ? "{$type} $" : '$') . $parameter->getName();
} }
$params = count($params) > 0 ? join(', ', $params) : ''; $params = count($params) > 0 ? join(', ', $params) : '';
echo '<div style="color:#666">' . nl2br($method->getDocComment()) . '</div>'; echo '<div style="color:#666">' . nl2br($method->getDocComment() ?: '') . '</div>';
echo "<div style='color:#00E'>{$object->getShortName()}::{$method->getName()}({$params})</div><br>"; echo "<div style='color:#00E'>{$object->getShortName()}::{$method->getName()}({$params})</div><br>";
} }
} catch (\Exception $exception) { } catch (\Exception $exception) {