From 38fd86f34ef658b79bf8f87f58c7c5d51b981207 Mon Sep 17 00:00:00 2001 From: Steve Hyde Date: Mon, 25 Jan 2021 15:53:14 +0100 Subject: [PATCH] Update ConsoleEvents.php input and output can be handed to the command, handed off to the command, or can be handled by the command, but handled to the command doesn't work --- src/Symfony/Component/Console/ConsoleEvents.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Console/ConsoleEvents.php b/src/Symfony/Component/Console/ConsoleEvents.php index f3c6cad5aa..99b423c83c 100644 --- a/src/Symfony/Component/Console/ConsoleEvents.php +++ b/src/Symfony/Component/Console/ConsoleEvents.php @@ -21,7 +21,7 @@ final class ConsoleEvents /** * The COMMAND event allows you to attach listeners before any command is * executed by the console. It also allows you to modify the command, input and output - * before they are handled to the command. + * before they are handed to the command. * * @Event("Symfony\Component\Console\Event\ConsoleCommandEvent") */