passage en float du poid d'un ticket
This commit is contained in:
parent
6df0706729
commit
2c123e7089
|
@ -27,7 +27,7 @@ class Scrumissue
|
|||
private $rowid;
|
||||
|
||||
/**
|
||||
* @ORM\Column(type="integer")
|
||||
* @ORM\Column(type="float")
|
||||
*/
|
||||
private $weight=0;
|
||||
|
||||
|
@ -203,12 +203,12 @@ class Scrumissue
|
|||
return $this;
|
||||
}
|
||||
|
||||
public function getWeight(): ?int
|
||||
public function getWeight(): ?float
|
||||
{
|
||||
return $this->weight;
|
||||
}
|
||||
|
||||
public function setWeight(int $weight): self
|
||||
public function setWeight(float $weight): self
|
||||
{
|
||||
$this->weight = $weight;
|
||||
|
||||
|
@ -216,4 +216,5 @@ class Scrumissue
|
|||
}
|
||||
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue