From 33dba96394a31b660ca905341c506ba5f7d36c7a 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 aded8aea91b..8b01f5af2ae 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 2d85bd0b26f7a6e23ba45f598cc3ff5f122b7426 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 8b01f5af2ae..8e0e47b23ff 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;