-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
New Feature: Change the Default Command in the Console component #3426
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
b29ab89
11c7174
60e2b3e
af9eac4
730985f
012456d
c23f34e
5e97202
c1b2aad
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,49 @@ | ||
.. index:: | ||
single: Console; Single command application | ||
single: Console; Changing the Default Behavior | ||
|
||
Changing the Default Behavior | ||
============================= | ||
|
||
When building a command line tool, you may need to customize it to fit your needs. | ||
Probably you want to change the Default Command that the Application runs or | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. default command (lowercased) |
||
maybe you just want to run a Single Command instead of have to pass the command | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. single command (lowercased) |
||
name each time. Fortunately it is possible to do both. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. missing comma after |
||
|
||
Changing the Default Command | ||
---------------------------- | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. missing There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will add it 👍 |
||
By default the Application will always run the ListCommand. In order to change | ||
the default command you just need to pass the command name you want to run by | ||
< 8000 /td> | default to the :method:`Symfony\\Component\\Console\\Application::setDefaultCommand` | |
method:: | ||
|
||
#!/usr/bin/env php | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm also not sure if the bang comment is used before in the docs, if not I prefer to remove it for consistency. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I copied it from the official documentation, more specific the introduction part of the Console Component There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ok, then we keep this. |
||
<?php | ||
// app/console | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you should remove this file comment, it's symfony specific and that's not something we do in the component docs. |
||
|
||
use Acme\DemoBundle\Command\GreetCommand; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is also Symfony specific, use something like There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I kept the same logic that exists in the introduction documentation for the component, but I can change it. Let me know what will work better for it! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we should not use Bundle in the components. Maybe just "Acme\Demo" (without Lib) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I do agree, since components are separated from the Framework. But that would change all documentation for each component |
||
use Symfony\Component\Console\Application; | ||
|
||
$command = new GreetCommand(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Where does it come from? When I read this document, I might not know about this command described in another part of the documentation. And anyway, this command won't work as a default command, which cannot have any argument... which is a "limitation" that should be explained in this doc. |
||
$application = new Application(); | ||
$application->add($command); | ||
$application->setDefaultCommand($command->getName()); | ||
$application->run() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. missing |
||
|
||
Test the new console command by running the following | ||
|
||
.. code-block:: bash | ||
|
||
$ app/console Fabien | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That won't work as we are talking about replacing the default command, when there are no argument. |
||
|
||
This will print the following to the command line: | ||
|
||
.. code-block:: text | ||
|
||
Hello Fabien | ||
|
||
Building a Single Command Application | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this should stay in a separate page, as it is a totally separate feature than changing the default command There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Actually, I think the best solution is to keep it in its original location. It may be referenced from the page about changing the default command, to wanT than changing the default is not the best way if you only want 1 command, but it should not be in the same page IMO. It makes it harder to find the feature There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I agree with @stof There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. +1, and it would also solve the |
||
===================================== | ||
------------------------------------- | ||
|
||
When building a command line tool, you may not need to provide several commands. | ||
In such case, having to pass the command name each time is tedious. Fortunately, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,6 @@ Console | |
|
||
introduction | ||
usage | ||
single_command_tool | ||
changing_default_behavior | ||
events | ||
helpers/index |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This title does not describe what the doc is about (default behavior of what ? Any doc about extending a part of Symfony could use this title)