Skip to content

Commit 823cc1f

Browse files
committed
minor symfony#52633 Hint that changing input arguments has no effect (fschmtt)
This PR was submitted for the 7.1 branch but it was merged into the 5.4 branch instead. Discussion ---------- Hint that changing input arguments has no effect | Q | A | ------------- | --- | Branch? | 7.1 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | symfony#52415 | License | MIT Adding a hint to `\Symfony\Component\Console\Event\ConsoleCommandEvent` that changing the input arguments has no effect. Commits ------- 9ec9ead Add hint that changing input arguments has no effect
2 parents 2e2fdeb + 9ec9ead commit 823cc1f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Symfony/Component/Console/Event/ConsoleCommandEvent.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@
1212
namespace Symfony\Component\Console\Event;
1313

1414
/**
15-
* Allows to do things before the command is executed, like skipping the command or changing the input.
15+
* Allows to do things before the command is executed, like skipping the command or executing code before the command is
16+
* going to be executed.
17+
*
18+
* Changing the input arguments will have no effect.
1619
*
1720
* @author Fabien Potencier <fabien@symfony.com>
1821
*/

0 commit comments

Comments
 (0)