From e21672aefa5ef84ae6c307f8bec921f7e1e2170e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Tue, 8 Sep 2020 11:29:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HttpServer/Http/Response.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/HttpServer/Http/Response.php b/HttpServer/Http/Response.php index 8d96181e..f10c7aa9 100644 --- a/HttpServer/Http/Response.php +++ b/HttpServer/Http/Response.php @@ -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;