From b3c0397a557fe3a928af823ef6e84f83a856dbcd Mon Sep 17 00:00:00 2001 From: Manuel Raynaud Date: Wed, 5 Jun 2013 14:57:54 +0200 Subject: [PATCH] add help message to thelia:install command --- core/lib/Thelia/Command/Install.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/lib/Thelia/Command/Install.php b/core/lib/Thelia/Command/Install.php index 8bc8fa453..9a1cb8dfa 100644 --- a/core/lib/Thelia/Command/Install.php +++ b/core/lib/Thelia/Command/Install.php @@ -26,6 +26,7 @@ namespace Thelia\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; +use Symfony\Component\DependencyInjection\Tests\Compiler\CheckExceptionOnInvalidReferenceBehaviorPassTest; use Symfony\Component\Filesystem\Filesystem; use Thelia\Command\ContainerAwareCommand; use Thelia\Core\Event\TheliaEvents; @@ -38,6 +39,7 @@ class Install extends ContainerAwareCommand $this ->setName("thelia:install") ->setDescription("Install thelia using cli tools. For now Thelia only use mysql database") + ->setHelp("The thelia:install command install Thelia database and create config file needed.") ; }