We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d400bd commit 7065dd1Copy full SHA for 7065dd1
components/console/introduction.rst
@@ -431,9 +431,11 @@ method::
431
432
$command = $application->find('demo:greet');
433
$commandTester = new CommandTester($command);
434
- $commandTester->execute(
435
- array('command' => $command->getName(), 'name' => 'Fabien', '--iterations' => 5)
436
- );
+ $commandTester->execute(array(
+ 'command' => $command->getName(),
+ 'name' => 'Fabien',
437
+ '--iterations' => 5,
438
+ ));
439
440
$this->assertRegExp('/Fabien/', $commandTester->getDisplay());
441
}
0 commit comments