From b3f781f076f3bc8d150ded900017eabc9ad18449 Mon Sep 17 00:00:00 2001 From: Malte N Date: Fri, 13 Jun 2014 22:14:30 +0200 Subject: [PATCH 1/2] fix origin of AcmeDemoBundle --- cookbook/console/console_command.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cookbook/console/console_command.rst b/cookbook/console/console_command.rst index 8992d5193f5..92f5a59ebe1 100644 --- a/cookbook/console/console_command.rst +++ b/cookbook/console/console_command.rst @@ -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 add the following to it:: // src/Acme/DemoBundle/Command/GreetCommand.php From c5a150f8ec44021d872aca944e7a08435517e376 Mon Sep 17 00:00:00 2001 From: Malte N Date: Sat, 21 Jun 2014 17:57:05 +0200 Subject: [PATCH 2/2] remove origin of AcmeDemoBundle I fixed a line break, too. --- cookbook/console/console_command.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cookbook/console/console_command.rst b/cookbook/console/console_command.rst index 92f5a59ebe1..342c3f7d83f 100644 --- a/cookbook/console/console_command.rst +++ b/cookbook/console/console_command.rst @@ -14,8 +14,8 @@ 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 SensioDistributionBundle) to greet you from the command line, create ``GreetCommand.php`` and -add the following to it:: +want to extend the AcmeDemoBundle to greet you from the command line, create +``GreetCommand.php`` and add the following to it:: // src/Acme/DemoBundle/Command/GreetCommand.php namespace Acme\DemoBundle\Command;