[AUTOGENERATED] Update autogenerated code

This commit is contained in:
Hugo Sales
2020-06-30 18:20:50 +00:00
committed by Hugo Sales
parent 2eab90bbb0
commit 97b583aee7
37 changed files with 361 additions and 754 deletions

View File

@@ -40,15 +40,14 @@ class Conversation
private int $id;
private string $uri;
private ?string $url;
private DateTimeInterface $created;
private DateTimeInterface $modified;
private \DateTimeInterface $created;
private \DateTimeInterface $modified;
public function setId(int $id): self
{
$this->id = $id;
return $this;
}
public function getId(): int
{
return $this->id;
@@ -59,7 +58,6 @@ class Conversation
$this->uri = $uri;
return $this;
}
public function getUri(): string
{
return $this->uri;
@@ -70,7 +68,6 @@ class Conversation
$this->url = $url;
return $this;
}
public function getUrl(): ?string
{
return $this->url;
@@ -81,7 +78,6 @@ class Conversation
$this->created = $created;
return $this;
}
public function getCreated(): DateTimeInterface
{
return $this->created;
@@ -92,7 +88,6 @@ class Conversation
$this->modified = $modified;
return $this;
}
public function getModified(): DateTimeInterface
{
return $this->modified;