userpokers = new ArrayCollection(); $this->scrumissuedependcies = new ArrayCollection(); $this->scrumissuedependencies = new ArrayCollection(); } public function getId(): ?int { return $this->id; } public function getRowid(): ?int { return $this->rowid; } public function setRowid(int $rowid): self { $this->rowid = $rowid; return $this; } public function getGiteaid(): ?int { return $this->giteaid; } public function setGiteaid(int $giteaid): self { $this->giteaid = $giteaid; return $this; } public function getGiteanumber(): ?int { return $this->giteanumber; } public function setGiteanumber(int $giteanumber): self { $this->giteanumber = $giteanumber; return $this; } public function getGiteastate(): ?string { return $this->giteastate; } public function setGiteastate(string $giteastate): self { $this->giteastate = $giteastate; return $this; } public function getGiteatitle(): ?string { return $this->giteatitle; } public function setGiteatitle(string $giteatitle): self { $this->giteatitle = $giteatitle; return $this; } public function getGiteamilestone(): ?int { return $this->giteamilestone; } public function setGiteamilestone(?int $giteamilestone): self { $this->giteamilestone = $giteamilestone; return $this; } public function getGiteajson(): ?array { return $this->giteajson; } public function setGiteajson(array $giteajson): self { $this->giteajson = $giteajson; return $this; } public function getScrum(): ?Scrum { return $this->scrum; } public function setScrum(?Scrum $scrum): self { $this->scrum = $scrum; return $this; } public function getScrumcolumn(): ?Scrumcolumn { return $this->scrumcolumn; } public function setScrumcolumn(?Scrumcolumn $scrumcolumn): self { $this->scrumcolumn = $scrumcolumn; return $this; } public function getGiteamilestonename(): ?string { return $this->giteamilestonename; } public function setGiteamilestonename(?string $giteamilestonename): self { $this->giteamilestonename = $giteamilestonename; return $this; } public function getWeight(): ?float { return $this->weight; } public function setWeight(float $weight): self { $this->weight = $weight; return $this; } public function getScrumsprint(): ?Scrumsprint { return $this->scrumsprint; } public function setScrumsprint(?Scrumsprint $scrumsprint): self { $this->scrumsprint = $scrumsprint; return $this; } /** * @return Collection|Userpoker[] */ public function getUserpokers(): Collection { return $this->userpokers; } public function addUserpoker(Userpoker $userpoker): self { if (!$this->userpokers->contains($userpoker)) { $this->userpokers[] = $userpoker; $userpoker->setScrumissue($this); } return $this; } public function removeUserpoker(Userpoker $userpoker): self { if ($this->userpokers->contains($userpoker)) { $this->userpokers->removeElement($userpoker); // set the owning side to null (unless already changed) if ($userpoker->getScrumissue() === $this) { $userpoker->setScrumissue(null); } } return $this; } public function getScrumissueblock(): ?self { return $this->scrumissueblock; } public function setScrumissueblock(?self $scrumissueblock): self { $this->scrumissueblock = $scrumissueblock; return $this; } /** * @return Collection|Scrumissue[] */ public function getScrumissuedependencies(): Collection { return $this->scrumissuedependencies; } public function addScrumissuedependency(Scrumissue $scrumissuedependency): self { if (!$this->scrumissuedependencies->contains($scrumissuedependency)) { $this->scrumissuedependencies[] = $scrumissuedependency; $scrumissuedependency->setScrumissue($this); } return $this; } public function removeScrumissuedependency(Scrumissue $scrumissuedependency): self { if ($this->scrumissuedependencies->contains($scrumissuedependency)) { $this->scrumissuedependencies->removeElement($scrumissuedependency); // set the owning side to null (unless already changed) if ($scrumissuedependency->getScrumissue() === $this) { $scrumissuedependency->setScrumissue(null); } } return $this; } }