svg
This commit is contained in:
@ -27,6 +27,15 @@ class Project
|
||||
#[ORM\Column(nullable: false)]
|
||||
private array $redmine;
|
||||
|
||||
#[ORM\Column(nullable: true)]
|
||||
private ?array $hiddenstatuses = null;
|
||||
|
||||
#[ORM\Column(nullable: true)]
|
||||
private ?array $hiddensprints = null;
|
||||
|
||||
#[ORM\Column(nullable: true)]
|
||||
private ?array $hiddenversions = null;
|
||||
|
||||
/**
|
||||
* @var Collection<int, User>
|
||||
*/
|
||||
@ -112,6 +121,42 @@ class Project
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getHiddenstatuses(): ?array
|
||||
{
|
||||
return $this->hiddenstatuses;
|
||||
}
|
||||
|
||||
public function setHiddenstatuses(array $hiddenstatuses): static
|
||||
{
|
||||
$this->hiddenstatuses = $hiddenstatuses;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getHiddensprints(): ?array
|
||||
{
|
||||
return $this->hiddensprints;
|
||||
}
|
||||
|
||||
public function setHiddensprints(array $hiddensprints): static
|
||||
{
|
||||
$this->hiddensprints = $hiddensprints;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getHiddenversions(): ?array
|
||||
{
|
||||
return $this->hiddenversions;
|
||||
}
|
||||
|
||||
public function setHiddenversions(array $hiddenversions): static
|
||||
{
|
||||
$this->hiddenversions = $hiddenversions;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Collection<int, User>
|
||||
*/
|
||||
|
Reference in New Issue
Block a user