mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
DDC-1379: Entity Generator Bug with extended classes #1725
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @doctrinebot on GitHub (Sep 16, 2011).
Originally assigned to: @beberlei on GitHub.
Jira issue originally created by user mbadolato:
I'm presently using Doctrine 2 in conjunction with Symfony 2 and have come across a bug with the Entity Generator when I'm extending an abstract class. Here's a minor example to demonstrate (please note, any annotations problems or typos are a result of my typing in this ticket. This isn't an actual example, but does accurately show how to reproduce the issue)
Using a setup similar to the above, where Bar extends Foo, there is an issue with the Generator.
So, opening Bar after running the generator, shows the getters and setters, but shows:
private $firstName;
private $lastName;
private $isActive;
This causes issues because the properties are being recreated as local versions, and their scope is set to private, conflicted with the more open protected version in the abstract class. To me, they shouldn't be placed in Bar because they're declared as protected in Foo and thus Bar has access to them. Also, when they are placed in Bar, the file formatting is messed up around them, suggesting that they were mis-placed in the file.
Hopefully this is a clear example. Please feel free to hit me up for more info!
--mark
@doctrinebot commented on GitHub (Oct 30, 2011):
Comment created by cvschaefer:
I can confirm this behavior.
Before generation:
after generation of FooBar:
It looks like the generator doesn't check if an attribute is inherited and therefore is already defined.
If an attribute is found as inherited, the generation of the attribute, accessor and mutator should be skipped.
This bug is really annoying, especially when working with bigger objects.
Tested within Symfony2 v2.0.4
-Chris
@doctrinebot commented on GitHub (Jan 9, 2012):
Comment created by @beberlei:
As per the help message of the entity generation inheritance generation is not yet supported and will not work.
Its planned for 2.3.
Follow DDC-1590 for current information.
@doctrinebot commented on GitHub (Jan 9, 2012):
Issue was closed with resolution "Duplicate"
@doctrinebot commented on GitHub (Aug 5, 2014):
Comment created by @doctrinebot:
A related Github Pull-Request [GH-1098] was assigned:
https://github.com/doctrine/doctrine2/pull/1098
@doctrinebot commented on GitHub (Aug 18, 2014):
Comment created by @doctrinebot:
A related Github Pull-Request [GH-1098] was closed:
https://github.com/doctrine/doctrine2/pull/1098
@doctrinebot commented on GitHub (Dec 28, 2014):
Comment created by @doctrinebot:
A related Github Pull-Request [GH-1231] was assigned:
https://github.com/doctrine/doctrine2/pull/1231
@doctrinebot commented on GitHub (Jan 17, 2015):
Comment created by @doctrinebot:
A related Github Pull-Request [GH-1231] was merged:
https://github.com/doctrine/doctrine2/pull/1231