From 7c4f8da820feab57a59ff22e9acdf4a70ad6100e Mon Sep 17 00:00:00 2001 From: USAMI Kenta Date: Tue, 12 Jul 2022 02:09:46 +0900 Subject: [PATCH] Fix call to ConsoleProcessus::execute() --- src/Readline/Hoa/ConsoleWindow.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Readline/Hoa/ConsoleWindow.php b/src/Readline/Hoa/ConsoleWindow.php index 4ebd5cbe..d4d4e8d6 100644 --- a/src/Readline/Hoa/ConsoleWindow.php +++ b/src/Readline/Hoa/ConsoleWindow.php @@ -120,7 +120,7 @@ public static function getSize(): array } $command = $term.'tput cols && '.$term.'tput lines'; - $tput = Processus::execute($command, false); + $tput = ConsoleProcessus::execute($command, false); if (!empty($tput)) { list($x, $y) = \explode("\n", $tput);