@@ -12,8 +12,8 @@ helper set, which you can get by calling
1212 $dialog = $this->getHelperSet()->get('dialog');
1313
1414All the methods inside the Dialog Helper have an
15- :class: `Symfony\\ Component\\ Console\\ Output\\ OutputInterface ` as first the
16- argument, the question as the second argument and the default value as last
15+ :class: `Symfony\\ Component\\ Console\\ Output\\ OutputInterface ` as the first
16+ argument, the question as the second argument and the default value as the last
1717argument.
1818
1919Asking the User for confirmation
@@ -52,8 +52,9 @@ if you want to know a bundle name, you can add this to your command::
5252 );
5353
5454The user will be asked "Please enter the name of the bundle". They can type
55- some name which will be returned by the ``ask `` method. If they leave it empty,
56- the default value (``AcmeDemoBundle `` here) is returned.
55+ some name which will be returned by the
56+ :method: `Symfony\\ Component\\ Console\\ Helper\\ DialogHelper::ask ` method.
57+ If they leave it empty, the default value (``AcmeDemoBundle `` here) is returned.
5758
5859Autocompletion
5960~~~~~~~~~~~~~~
@@ -235,9 +236,12 @@ this set the seventh argument to ``true``::
235236 return $colors[$c];
236237 }, $selected);
237238
238- $output->writeln('You have just selected: ' . implode(', ', $selectedColors));
239+ $output->writeln(
240+ 'You have just selected: ' . implode(', ', $selectedColors)
241+ );
239242
240- Now, when the user enters ``1,2 ``, the result will be: ``You have just selected: blue, yellow ``.
243+ Now, when the user enters ``1,2 ``, the result will be:
244+ ``You have just selected: blue, yellow ``.
241245
242246Testing a Command which expects input
243247-------------------------------------
0 commit comments