From 1341dec3f286a876b424ef3f75d436f59e2fc5c2 Mon Sep 17 00:00:00 2001 From: tianfenghan Date: Thu, 9 Apr 2026 16:34:09 +0800 Subject: [PATCH] =?UTF-8?q?feat(php):=20=E6=B7=BB=E5=8A=A0=E9=A2=84?= =?UTF-8?q?=E5=A4=84=E7=90=86=E5=99=A8=E5=AE=8C=E6=88=90=E7=8A=B6=E6=80=81?= =?UTF-8?q?=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在预处理完成后显示总共处理的源文件数量 - 使用浅蓝色输出完成状态信息 --- src/Php/Preprocessor.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Php/Preprocessor.php b/src/Php/Preprocessor.php index 8b91cf15..7810dd09 100644 --- a/src/Php/Preprocessor.php +++ b/src/Php/Preprocessor.php @@ -59,6 +59,8 @@ class Preprocessor extends CompilerBase } $list = $sortedFiles; + + $this->climate->lightBlue('prepare completed: ' . count($list) . ' source files in total'); } public function getCppFile(string $file): string