How to address the bundle in php app/console generate:doctrine:crud
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 doctrine entity, but I'm constantly failing to enter the correct string for the entity parameter. I tried things like: php app/console generate:doctrine:crud --entity=Cinergy/Bundle/PeopleServiceBundle:Group or php app/console generate:doctrine:crud --entity=@PeopleServiceBundle:Group All of them return erros like: [Doctrine\ORM\ORMException] Unknown Entity namespace alias '@PeopleServiceBundle'. What's the right syntax for the --entity parameter? Or is there