This commit is contained in:
2020-09-08 11:29:45 +08:00
parent 359a8817a4
commit e21672aefa
+3 -3
View File
@@ -148,9 +148,9 @@ class Response extends Application
{
$result = Help::toString($result);
$string = 'Command Result: ' . PHP_EOL. PHP_EOL. PHP_EOL;
$string .= empty($result) ? 'success!' : $result . PHP_EOL. PHP_EOL. PHP_EOL;
$string .= 'Command Success!' . PHP_EOL;
$string = PHP_EOL . 'Command Result: ' . PHP_EOL . PHP_EOL;
$string .= empty($result) ? 'success!' : $result . PHP_EOL . PHP_EOL;
$string .= 'Command Success!' . PHP_EOL . PHP_EOL;
echo $string;
$event = Snowflake::app()->event;