statement = $statement; $this->uuid = $uuid; $this->sent = $sent; } public function getId(): int { return $this->id; } public function getUuid(): ?string { return $this->uuid; } public function setUuid(?string $uuid): SharedStatement { $this->uuid = $uuid; return $this; } public function getStatement(): array { return $this->statement; } public function setStatement(array $statement): SharedStatement { $this->statement = $statement; return $this; } public function isSent(): bool { return $this->sent; } public function setSent(bool $sent): SharedStatement { $this->sent = $sent; return $this; } }