Bugfix document mappedsuperclass should not contain id property

This commit is contained in:
Julie Lenaerts 2023-09-19 09:42:46 +02:00
parent f609bb0645
commit eca26a15e6
3 changed files with 38 additions and 12 deletions

View File

@ -28,6 +28,13 @@ class AccompanyingCourseDocument extends Document implements HasScopesInterface,
*/ */
private ?AccompanyingPeriod $course = null; private ?AccompanyingPeriod $course = null;
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
public function getCenters(): ?iterable public function getCenters(): ?iterable
{ {
return $this->course->getCenters(); return $this->course->getCenters();
@ -38,6 +45,11 @@ class AccompanyingCourseDocument extends Document implements HasScopesInterface,
return $this->course; return $this->course;
} }
public function getId()
{
return $this->id;
}
public function getScopes(): iterable public function getScopes(): iterable
{ {
if (null === $this->course) { if (null === $this->course) {
@ -53,4 +65,11 @@ class AccompanyingCourseDocument extends Document implements HasScopesInterface,
return $this; return $this;
} }
public function setId($id): self
{
$this->id = $id;
return $this;
}
} }

View File

@ -49,13 +49,6 @@ class Document implements TrackCreationInterface, TrackUpdateInterface
*/ */
private $description = ''; private $description = '';
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/** /**
* @ORM\ManyToOne( * @ORM\ManyToOne(
* targetEntity="Chill\DocStoreBundle\Entity\StoredObject", * targetEntity="Chill\DocStoreBundle\Entity\StoredObject",
@ -103,11 +96,6 @@ class Document implements TrackCreationInterface, TrackUpdateInterface
return $this->description; return $this->description;
} }
public function getId()
{
return $this->id;
}
public function getObject(): ?StoredObject public function getObject(): ?StoredObject
{ {
return $this->object; return $this->object;

View File

@ -23,6 +23,13 @@ use Doctrine\ORM\Mapping as ORM;
*/ */
class PersonDocument extends Document implements HasCenterInterface, HasScopeInterface class PersonDocument extends Document implements HasCenterInterface, HasScopeInterface
{ {
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/** /**
* @ORM\ManyToOne(targetEntity="Chill\PersonBundle\Entity\Person") * @ORM\ManyToOne(targetEntity="Chill\PersonBundle\Entity\Person")
*/ */
@ -40,6 +47,11 @@ class PersonDocument extends Document implements HasCenterInterface, HasScopeInt
return $this->getPerson()->getCenter(); return $this->getPerson()->getCenter();
} }
public function getId()
{
return $this->id;
}
public function getPerson(): Person public function getPerson(): Person
{ {
return $this->person; return $this->person;
@ -50,6 +62,13 @@ class PersonDocument extends Document implements HasCenterInterface, HasScopeInt
return $this->scope; return $this->scope;
} }
public function setId($id): self
{
$this->id = $id;
return $this;
}
public function setPerson($person): self public function setPerson($person): self
{ {
$this->person = $person; $this->person = $person;