Fix wrong use of private in mapped superclasses, only protected is supported here.
This commit is contained in:
parent
ea95bd57ef
commit
138b67db86
1 changed files with 3 additions and 3 deletions
|
@ -35,14 +35,14 @@ Example:
|
||||||
class MappedSuperclassBase
|
class MappedSuperclassBase
|
||||||
{
|
{
|
||||||
/** @Column(type="integer") */
|
/** @Column(type="integer") */
|
||||||
private $mapped1;
|
protected $mapped1;
|
||||||
/** @Column(type="string") */
|
/** @Column(type="string") */
|
||||||
private $mapped2;
|
protected $mapped2;
|
||||||
/**
|
/**
|
||||||
* @OneToOne(targetEntity="MappedSuperclassRelated1")
|
* @OneToOne(targetEntity="MappedSuperclassRelated1")
|
||||||
* @JoinColumn(name="related1_id", referencedColumnName="id")
|
* @JoinColumn(name="related1_id", referencedColumnName="id")
|
||||||
*/
|
*/
|
||||||
private $mappedRelated1;
|
protected $mappedRelated1;
|
||||||
|
|
||||||
// ... more fields and methods
|
// ... more fields and methods
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue