From 289e6530a8709e41e2bb7c79399c02415c93a30b Mon Sep 17 00:00:00 2001 From: tracer Date: Sat, 13 Jul 2024 16:48:15 +0200 Subject: [PATCH] fixed a bug in CLIController --- src/Controller/CLIController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/CLIController.php b/src/Controller/CLIController.php index 2038031..0803b0e 100644 --- a/src/Controller/CLIController.php +++ b/src/Controller/CLIController.php @@ -1224,7 +1224,7 @@ class CLIController echo Colors::DEFAULT . ' Version: ' . Colors::YELLOW . $decodedData->version; echo Colors::DEFAULT . ' (Build: ' . Colors::YELLOW . $decodedData->buildnumber . Colors::DEFAULT . ')' . PHP_EOL; } else { - echo Color::RED . ' Error: ' . Colors::YELLOW . $result['data'] . Colors::DEFAULT . PHP_EOL; + echo Colors::RED . ' Error: ' . Colors::YELLOW . $result['data'] . Colors::DEFAULT . PHP_EOL; } // var_dump($result); $skipAAAA = true;