I am trying to save objects in the MyBundle / OtherNamespacePart / Entity directory.
If I run doctrine:schema:create , I get this error message:
The class MyBundle / Entity / MyEntity does not exist and cannot be loaded.
I do not understand why "OtherNamespacePart" is ignored (should be MyBundle / OtherNamespacePart / Entity / MyEntity). I checked the whole project if there are all the names and the names are correct, and it seems good to me. If I store objects directly in the entity directory, it works (you just need to delete all "OtherNamespacePart").
Is there a problem in the console command tool that expects entities in the entity directory? Is there any workaround or setting?
ramoo source share