[AUTOGENERATED] Update autogenerated code

This commit is contained in:
2021-12-26 21:32:09 +00:00
committed by Diogo Peralta Cordeiro
parent 0df423e84b
commit 93276ce8d0
35 changed files with 131 additions and 131 deletions

View File

@@ -12,7 +12,7 @@ class Collection extends Entity
// {{{ Autocode
// @codeCoverageIgnoreStart
private int $id;
private ?string $name;
private ?string $name = null;
private int $actor_id;
public function setId(int $id): self
@@ -28,7 +28,7 @@ class Collection extends Entity
public function setName(?string $name): self
{
$this->name = mb_substr($name, 0, 255);
$this->name = \is_null($name) ? null : mb_substr($name, 0, 255);
return $this;
}