mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
DDC-1579: MappedSuperClass and inheritance problem with console generate:entities command #1984
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 (Jan 5, 2012).
Originally assigned to: @beberlei on GitHub.
Jira issue originally created by user smoya:
I have two classes.
One extends from another. I'm using the annotation @MappedSuperclass
and operates correctly, but when he did the entities generation
through the command console, doctrine adds the property and the
methods of the "father" class in the subclass.
This is a bug of the command console?
Really you should not copy them if you do not extend them. When you
run the update of the database schema, i must delete these fields and
methods added to obtain the desired result.
What happens?
Im usign Symfony 2.
Thanks!!!!
Code:
Father class:
/**********************************************************************
/****
@ORM\MappedSuperclass
*/
abstract class ConfigBase
{
/****
*/
protected $enabled;
/****
*
*/
public function setEnabled($enabled)
{
$this->enabled = $enabled;
}
/****
*
*/
public function getEnabled()
{
return $this->enabled;
}
}
/**********************************************************************
SubClass
/**********************************************************************
/****
@ORM\Entity
*
/
class UserConfig extends ConfigBase
{
/***
*
*/
protected $id;
/****
*
*/
public function getId()
{
return $this->id;
}
/*******************************************_/
/* Auto generated and non desired values **/
/*************************************************/
/_*
* @var boolean $enabled
*/
private $enabled;
@doctrinebot commented on GitHub (Jan 5, 2012):
@doctrinebot commented on GitHub (Jan 9, 2012):
Comment created by @beberlei:
It is a known problem that will be fixed in 2.3 hopefully.
@doctrinebot commented on GitHub (Jan 9, 2012):
Issue was closed with resolution "Duplicate"
@doctrinebot commented on GitHub (Jul 3, 2012):
Comment created by johan:
I just noticed that this is only an issue if the member has a protected scope in the mapped super class, it works fine for private members.
@doctrinebot commented on GitHub (Dec 10, 2012):
Comment created by lukxde:
As of Doctrine 2.3.0, Symfony 2.1.3, this behaviour is still reproducable.
Mr. Ehlers is correct; generation will work correctly when the super class' properties are set to private scope. However, in that case the Proxy Object's lazy loading can't set the properties in question.