Hi,
There is an issue with Doctrine multiple level Inheritance.
Example :
I have a Base class with a discriminator (dtype = base)
I have a User class which extends Base (dtype = user)
I have an Admin class which extends User (dtype = admin)
If i want it to work, i need to have in the DiscriminatorMap of Base the three of them. But skipper just put base/user without admin. So, when i want to select my datas from Base, i got an error because Doctrine doesn't recognize admin type.
It will be really great to fix it cause i got to revert those types of annotations any time i export.
Thanks !