We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent1f3a687 commitddaac67Copy full SHA for ddaac67
cookbook/console/console_command.rst
@@ -85,8 +85,10 @@ For example, you could easily extend the task to be translatable::
85
Testing Commands
86
----------------
87
88
-When testing commands used as part of the full framework:class:`Symfony\\Bundle\\FrameworkBundle\\Console\\Application`
89
-should be used instead of:class:`Symfony\\Component\\Console\\Application`::
+When testing commands used as part of the full framework
+:class:`Symfony\\Bundle\\FrameworkBundle\\Console\\Application <Symfony\\Bundle\\FrameworkBundle\\Console\\Application>` should be used
90
+instead of
91
+:class:`Symfony\\Component\\Console\\Application <Symfony\\Component\\Console\\Application>`::
92
93
use Symfony\Component\Console\Tester\CommandTester;
94
use Symfony\Bundle\FrameworkBundle\Console\Application;