We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01f474f commit d1cb043Copy full SHA for d1cb043
console/private_commands.rst renamed to console/hide_commands.rst
@@ -11,17 +11,17 @@ executed through scheduled tasks, etc.
11
In those cases, you can define the command as **hidden** by setting the
12
``setHidden()`` method to ``true`` in the command configuration::
13
14
- // src/AppBundle/Command/FooCommand.php
+ // src/AppBundle/Command/LegacyCommand.php
15
namespace AppBundle\Command;
16
17
use Symfony\Component\Console\Command\Command;
18
19
- class FooCommand extends Command
+ class LegacyCommand extends Command
20
{
21
protected function configure()
22
23
$this
24
- ->setName('app:foo')
+ ->setName('app:legacy')
25
->setHidden(true)
26
// ...
27
;
0 commit comments