@@ -198,32 +198,6 @@ level. For example::
198198 $output->writeln(...);
199199 }
200200
201- ..versionadded ::2.4
202- The:method: `Symfony\\ Component\\ Console\\ Output\\ Output::isQuiet `,
203- :method: `Symfony\\ Component\\ Console\\ Output\\ Output::isVerbose `,
204- :method: `Symfony\\ Component\\ Console\\ Output\\ Output::isVeryVerbose ` and
205- :method: `Symfony\\ Component\\ Console\\ Output\\ Output::isDebug `
206- methods were introduced in Symfony 2.4
207-
208- There are also more semantic methods you can use to test for each of the
209- verbosity levels::
210-
211- if ($output->isQuiet()) {
212- // ...
213- }
214-
215- if ($output->isVerbose()) {
216- // ...
217- }
218-
219- if ($output->isVeryVerbose()) {
220- // ...
221- }
222-
223- if ($output->isDebug()) {
224- // ...
225- }
226-
227201When the quiet level is used, all output is suppressed as the default
228202:method: `Symfony\\ Component\\ Console\\ Output\\ Output::write ` method returns
229203without actually printing.