This commit is contained in:
2025-07-24 22:26:12 +02:00
parent 52036c690b
commit 96b2830af7
6 changed files with 55 additions and 37 deletions

View File

@ -24,6 +24,9 @@ class Project
#[ORM\Column(type: 'datetime', nullable: true)]
private ?\DateTimeInterface $updateAt = null;
#[ORM\Column(type: 'datetime', nullable: true)]
private ?\DateTimeInterface $updateIssuesAt = null;
#[ORM\Column(nullable: false)]
private array $redmine;
@ -109,6 +112,18 @@ class Project
return $this;
}
public function getUpdateIssuesAt(): ?\DateTimeInterface
{
return $this->updateIssuesAt;
}
public function setUpdateIssuesAt(?\DateTimeInterface $updateIssuesAt): static
{
$this->updateIssuesAt = $updateIssuesAt;
return $this;
}
public function getRedmine(): array
{
return $this->redmine;