This commit is contained in:
2025-07-11 23:04:57 +02:00
parent 1e9cd2f75b
commit 056e3d7abc
8 changed files with 423 additions and 6 deletions

View File

@ -30,6 +30,9 @@ class Issue
#[ORM\Column(nullable: false)]
private int $rowissue = 0;
#[ORM\Column(nullable: true)]
private string $color = '';
#[ORM\ManyToOne(targetEntity: Project::class, inversedBy: 'issues')]
#[ORM\JoinColumn(nullable: false)]
private Project $project;
@ -125,6 +128,18 @@ class Issue
return $this;
}
public function getColor(): ?string
{
return $this->rowsprint;
}
public function setColor(?string $color): static
{
$this->color = $color;
return $this;
}
public function getProject(): Project
{
return $this->project;