Skip to content

Commit db1a281

Browse files
committed
Regenerated documentation.md
1 parent 986268c commit db1a281

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

documentation.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -821,16 +821,16 @@ Recommended to use for integration or functional testing.
821821

822822
``` php
823823
<?php
824-
$result = $I->runSymfonyConsoleCommand('hello:world', '--verbose' => 3]);
824+
$result = $I->runSymfonyConsoleCommand('hello:world', ['arg' => 'argValue', 'opt1' => 'optValue'], ['input']);
825825
?>
826826
```
827827

828-
* `param string` $command
829-
* `param mixed[]` $params
828+
* `param string` $command The console command to execute
829+
* `param array` $parameters Parameters (arguments and options) to pass to the command
830+
* `param array` $consoleInputs Console inputs (e.g. used for interactive questions)
831+
* `param int` $expectedExitCode The expected exit code of the command
830832

831-
* `return` string
832-
833-
@throws \Exception
833+
* `return` string Returns the console output of the command
834834

835835

836836
### see

0 commit comments

Comments
 (0)