[AUTOGENERATED] Update auto generated code

This commit is contained in:
2021-12-26 15:12:06 +00:00
committed by Diogo Peralta Cordeiro
parent 68076d73dd
commit c79b1e4c94
61 changed files with 426 additions and 434 deletions

View File

@@ -41,8 +41,8 @@ class ProfileColor extends Entity
// {{{ Autocode
// @codeCoverageIgnoreStart
private int $actor_id;
private ?string $color;
private ?string $background;
private ?string $color;
private DateTimeInterface $created;
private DateTimeInterface $modified;
@@ -57,18 +57,7 @@ class ProfileColor extends Entity
return $this->actor_id;
}
public function setColor(string $color): self
{
$this->color = $color;
return $this;
}
public function getColor(): ?string
{
return $this->color;
}
public function setBackground(string $background): self
public function setBackground(?string $background): self
{
$this->background = $background;
return $this;
@@ -79,6 +68,17 @@ class ProfileColor extends Entity
return $this->background;
}
public function setColor(?string $color): self
{
$this->color = $color;
return $this;
}
public function getColor(): ?string
{
return $this->color;
}
public function setCreated(DateTimeInterface $created): self
{
$this->created = $created;