Skip to content

fix origin of AcmeDemoBundle #3951

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

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions cookbook/console/console_command.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ Automatically Registering Commands
To make the console commands available automatically with Symfony2, create a
``Command`` directory inside your bundle and create a PHP file suffixed with
``Command.php`` for each command that you want to provide. For example, if you
want to extend the AcmeDemoBundle (available in the Symfony Standard
Edition) to greet you from the command line, create ``GreetCommand.php`` and
want to extend the AcmeDemoBundle (available in the SensioDistributionBundle) to greet you from the command line, create ``GreetCommand.php`` and
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need to add some line breaks here after the 72nd character :).

Check out the second bullet point here: http://symfony.com/doc/current/contributing/documentation/standards.html#sphinx

Can you make that change? Thanks!

add the following to it::

// src/Acme/DemoBundle/Command/GreetCommand.php
Expand Down