Skip to content

Commit

Permalink
Regenerated documentation.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Naktibalda committed Apr 5, 2020
1 parent 986268c commit db1a281
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -821,16 +821,16 @@ Recommended to use for integration or functional testing.

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

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

* `return` string

@throws \Exception
* `return` string Returns the console output of the command


### see
Expand Down

0 comments on commit db1a281

Please sign in to comment.