mise en place de sprint dans les jalons
This commit is contained in:
@ -75,9 +75,16 @@ class Scrumissue
|
||||
|
||||
/**
|
||||
* @ORM\ManyToOne(targetEntity="Scrumcolumn", inversedBy="Scrumissues")
|
||||
* @ORM\JoinColumn(nullable=true, onDelete="SET NULL")
|
||||
*/
|
||||
private $scrumcolumn;
|
||||
|
||||
/**
|
||||
* @ORM\ManyToOne(targetEntity="Scrumsprint", inversedBy="Scrumissues")
|
||||
* @ORM\JoinColumn(nullable=true, onDelete="SET NULL")
|
||||
*/
|
||||
private $scrumsprint;
|
||||
|
||||
public function getId(): ?int
|
||||
{
|
||||
return $this->id;
|
||||
@ -215,6 +222,18 @@ class Scrumissue
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getScrumsprint(): ?Scrumsprint
|
||||
{
|
||||
return $this->scrumsprint;
|
||||
}
|
||||
|
||||
public function setScrumsprint(?Scrumsprint $scrumsprint): self
|
||||
{
|
||||
$this->scrumsprint = $scrumsprint;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user