[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

@@ -60,7 +60,7 @@ class ForeignService
public function setName(string $name): self
{
$this->name = $name;
$this->name = mb_substr($name, 0, 32);
return $this;
}
@@ -71,7 +71,7 @@ class ForeignService
public function setDescription(?string $description): self
{
$this->description = $description;
$this->description = mb_substr($description, 0, 191);
return $this;
}