Details
Description
when using the EntityGenerator to generate getters and setters of two classes mapped with annotations, one inheriting from the other, the EntityGenerator generates getters and setters for the properties of the parent class in the child class too. This occurs since the recent EntityGenerator changes (as it did not care about inheritance before).
I suppose this is due to the fact that the getters and setters of the parent class are not yet generated when handling the child class.
I haven't try if it works well when using XML or YAML for the mapping.
I'm also still seeing this in 2.1 (bundled with Symfony2).
Using single table inheritance, adding a protected or public property to the abstract class causes private properties & getters & setters to be added to all subclasses.