svg
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user