|
|
@@ -111,7 +111,7 @@ class Person implements UserInterface, PasswordAuthenticatedUserInterface
|
|
|
private array $confidentiality = [];
|
|
|
|
|
|
#[ORM\Column(type: 'date', nullable: true)]
|
|
|
- private ?\DateTimeInterface $creationDate = null;
|
|
|
+ private ?\DateTimeInterface $createDate = null;
|
|
|
|
|
|
#[ORM\Column(nullable: true)]
|
|
|
private ?int $createdBy = null;
|
|
|
@@ -620,14 +620,14 @@ class Person implements UserInterface, PasswordAuthenticatedUserInterface
|
|
|
return $this;
|
|
|
}
|
|
|
|
|
|
- public function getCreationDate(): ?\DateTimeInterface
|
|
|
+ public function getCreateDate(): ?\DateTimeInterface
|
|
|
{
|
|
|
- return $this->creationDate;
|
|
|
+ return $this->createDate;
|
|
|
}
|
|
|
|
|
|
- public function setCreationDate(?\DateTimeInterface $creationDate): self
|
|
|
+ public function setCreateDate(?\DateTimeInterface $createDate): self
|
|
|
{
|
|
|
- $this->creationDate = $creationDate;
|
|
|
+ $this->createDate = $createDate;
|
|
|
return $this;
|
|
|
}
|
|
|
|