From 9ec9ead9870cca40bb498038014a7aac697b738b Mon Sep 17 00:00:00 2001 From: Frederik Schmitt Date: Fri, 17 Nov 2023 17:49:38 +0100 Subject: [PATCH] Add hint that changing input arguments has no effect --- src/Symfony/Component/Console/Event/ConsoleCommandEvent.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/Console/Event/ConsoleCommandEvent.php b/src/Symfony/Component/Console/Event/ConsoleCommandEvent.php index 08bd18fd1f32f..1b4f9f9b1392d 100644 --- a/src/Symfony/Component/Console/Event/ConsoleCommandEvent.php +++ b/src/Symfony/Component/Console/Event/ConsoleCommandEvent.php @@ -12,7 +12,10 @@ namespace Symfony\Component\Console\Event; /** - * Allows to do things before the command is executed, like skipping the command or changing the input. + * Allows to do things before the command is executed, like skipping the command or executing code before the command is + * going to be executed. + * + * Changing the input arguments will have no effect. * * @author Fabien Potencier */