[AUTOGENERATED][DB][File][GroupJoinQueue] Update autogenerated code and add select fields as specified in the previous commit

This commit is contained in:
2021-03-10 17:20:42 +00:00
parent 1712782cc5
commit 481027b09b
7 changed files with 27 additions and 37 deletions

View File

@@ -44,7 +44,7 @@ class Activity extends Entity
private string $object_type;
private int $object_id;
private bool $is_local;
private string $source;
private ?string $source;
private DateTimeInterface $created;
public function setId(int $id): self
@@ -113,13 +113,13 @@ class Activity extends Entity
return $this->is_local;
}
public function setSource(string $source): self
public function setSource(?string $source): self
{
$this->source = $source;
return $this;
}
public function getSource(): string
public function getSource(): ?string
{
return $this->source;
}