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