From c70df1ffaf23a8d340bded3cfab1b86752ad6ed7 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 --- Event/ConsoleCommandEvent.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Event/ConsoleCommandEvent.php b/Event/ConsoleCommandEvent.php index 08bd18fd1..1b4f9f9b1 100644 --- a/Event/ConsoleCommandEvent.php +++ b/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 */