I extended the user bundle from the Sonata project with Sonata EasyExtends bundle. It is placed under src/Application/Sonata/UserBundle by default
Now I want to customize the extended class and add some fields. I notice though that annotations are not being processed, I need to define the mappings in src/Application/Sonata/UserBundle/Resources/config/doctrine/User.orm.xml
Is there any way to make use of the annotations instead of the XML file? I think it will solve a lot of my problems with referencing the user class, as now the command
php app/console doctrine:schema:update --force
doesnt seem to recognize the annotations..