modify plugin name

This commit is contained in:
2022-06-08 15:13:02 +08:00
parent ba6d854035
commit a5dde8a140
+1 -1
View File
@@ -127,7 +127,7 @@ class Command extends Component
*/ */
private function print_r($time): string private function print_r($time): string
{ {
return print_r([$this->sql, $this->params], true) . (microtime(true) - $time); return print_r(['time' => microtime(true) - $time, 'sql' => $this->sql, 'param' => $this->params], true);
} }