Bugfix document mappedsuperclass should not contain id property

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

View File

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