8000 Remove horizontal scrollbar · symfony/symfony-docs@7065dd1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7065dd1

Browse files
committed
Remove horizontal scrollbar
| Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | 2.3 | Fixed tickets |
1 parent 4d400bd commit 7065dd1

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

components/console/introduction.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -431,9 +431,11 @@ method::
431431

432432
$command = $application->find('demo:greet');
433433
$commandTester = new CommandTester($command);
434-
$commandTester->execute(
435-
array('command' => $command->getName(), 'name' => 'Fabien', '--iterations' => 5)
436-
);
434+
$commandTester->execute(array(
435+
'command' => $command->getName(),
436+
'name' => 'Fabien',
437+
'--iterations' => 5,
438+
));
437439

438440
$this->assertRegExp('/Fabien/', $commandTester->getDisplay());
439441
}

0 commit comments

Comments
 (0)
0