From 6261cc26693fa1697bcbbd671f18f4902bef07bc Mon Sep 17 00:00:00 2001 From: Jeremy Mikola Date: Wed, 2 Jun 2010 17:32:08 -0400 Subject: [PATCH] Fixed bad examples in doctrine:generate:entities help output. --- .../Command/GenerateEntitiesDoctrineCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Framework/DoctrineBundle/Command/GenerateEntitiesDoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/GenerateEntitiesDoctrineCommand.php index ff16e33f99..61837fc77a 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/GenerateEntitiesDoctrineCommand.php +++ b/src/Symfony/Framework/DoctrineBundle/Command/GenerateEntitiesDoctrineCommand.php @@ -45,11 +45,11 @@ The above would generate entity classes for all bundles. You can also optionally limit generation to entities within an individual bundle: - ./symfony doctrine:generate:entities --bundle="Bundle\MyCustomBundle" + ./symfony doctrine:generate:entities --bundle="Bundle/MyCustomBundle" Alternatively, you can limit generation to a single entity within a bundle: - ./symfony doctrine:generate:entities --bundle="Bundle\MyCustomBundle" --entity="User" + ./symfony doctrine:generate:entities --bundle="Bundle/MyCustomBundle" --entity="User" EOT ); }