In my symfony 2 project I have a bundle at
src/Cinergy/Bundle/PeopleServiceBundle
Now I\'d like to generate a CRUD controller based on a doctri
First you need to register your bundle into your AppKernel.
AppKernel
Then simply run the following command. Don't put @ before the bundle's name
@
php app/console generate:doctrine:crud --entity=PeopleServiceBundle:Group
More about generating a CRUD controller based on a Doctrine entity.