color priority

This commit is contained in:
2024-04-12 20:27:25 +02:00
parent 8f8f53bff3
commit e98e1f2698
3 changed files with 35 additions and 2 deletions

View File

@ -33,6 +33,11 @@ class Scrumissue
*/
private $weight=0;
/**
* @ORM\Column(type="string", nullable=true)
*/
private $color;
/**
* @ORM\Column(type="integer")
*/
@ -332,4 +337,16 @@ class Scrumissue
return $this;
}
public function getColor(): ?string
{
return $this->color;
}
public function setColor(?string $color): self
{
$this->color = $color;
return $this;
}
}