From b093aa9fa6e1260b38e7c95a8ed71744d9f822da Mon Sep 17 00:00:00 2001 From: Matias Griese Date: Tue, 8 Dec 2020 12:13:08 +0200 Subject: [PATCH] Fix symfony bug (part 2) --- system/src/Grav/Console/Cli/ServerCommand.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/system/src/Grav/Console/Cli/ServerCommand.php b/system/src/Grav/Console/Cli/ServerCommand.php index a438538a6..2b5e366cf 100644 --- a/system/src/Grav/Console/Cli/ServerCommand.php +++ b/system/src/Grav/Console/Cli/ServerCommand.php @@ -112,12 +112,11 @@ class ServerCommand extends ConsoleCommand /** * @param string $name - * @param string $cmd + * @param array $cmd * @return Process */ protected function runProcess($name, $cmd) { - // TODO: Fix when Symfony fixes the bug in the argument handling. $process = new Process($cmd); $process->setTimeout(0); $process->start();