From 32338af211692d98d77724b1c8556891d4727acf Mon Sep 17 00:00:00 2001 From: Jakub Zalas Date: Mon, 19 Jan 2015 16:44:29 +0000 Subject: [PATCH] [Console] Make it clear that the second argument is not about command options. --- src/Symfony/Component/Console/Tester/CommandTester.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/Console/Tester/CommandTester.php b/src/Symfony/Component/Console/Tester/CommandTester.php index 1806846a91..17c2918b6b 100644 --- a/src/Symfony/Component/Console/Tester/CommandTester.php +++ b/src/Symfony/Component/Console/Tester/CommandTester.php @@ -41,14 +41,14 @@ class CommandTester /** * Executes the command. * - * Available options: + * Available execution options: * * * interactive: Sets the input interactive flag * * decorated: Sets the output decorated flag * * verbosity: Sets the output verbosity flag * - * @param array $input An array of arguments and options - * @param array $options An array of options + * @param array $input An array of command arguments and options + * @param array $options An array of execution options * * @return int The command exit code */