Skip to content
Advertisement

No mapped Doctrine ORM entities according to the current configuration

I’ve got a dubious issue. I have a set of existing annotated Doctrine entities which have been successfully used in a Symfony2/Doctrine2 project. However, I’m currently isolating some core functionality of this project into it’s own web framework independent library and I can’t seem to get the entities to function properly.

At the moment my major concern is the fact that the Doctrine CLI utility is giving me mixed results.

When I do the following:

JavaScript

I get the following output:

JavaScript

But when I do:

JavaScript

I get this:

JavaScript

I have gone over my configuration a gazillion times now. I’ve even removed all my entities and left a most basic User entity in there giving me the same scenario.

What could possible be the source of these mixed results?

Advertisement

Answer

It turns out that the standard Doctrine config set up [1] doesn’t work with my code base, or any code base I have tested with, maybe the docs are outdated. After ploughing through the Interwebs for hours, this is the configuration that finally made it work for me:

JavaScript

[1] http://docs.doctrine-project.org/en/latest/tutorials/getting-started.html

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement