8000 minor #13452 [Console] Clarify method arguments (jakzal) · symfony/symfony@7be7e62 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7be7e62

Browse files
committed
minor #13452 [Console] Clarify method arguments (jakzal)
This PR was merged into the 2.3 branch. Discussion ---------- [Console] Clarify method arguments | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Make it clear that the second argument is not about command options to avoid bug reports like #13415. Commits ------- 32338af [Console] Make it clear that the second argument is not about command options.
2 parents b8e4b4a + 32338af commit 7be7e62

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Symfony/Component/Console/Tester/CommandTester.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ public function __construct(Command $command)
4141
/**
4242
* Executes the command.
4343
*
44-
* Available options:
44+
* Available execution options:
4545
*
4646
* * interactive: Sets the input interactive flag
4747
* * decorated: Sets the output decorated flag
4848
* * verbosity: Sets the output verbosity flag
4949
*
50-
* @param array $input An array of arguments and options
51-
* @param array $options An array of options
50+
* @param array $input An array of command arguments and options
51+
* @param array $options An array of execution options
5252
*
5353
* @return int The command exit code
5454
*/

0 commit comments

Comments
 (0)
0