id; } public function setId(string $id): static { $this->id = $id; return $this; } public function getPageId(): ?int { return $this->pageId; } public function setPageId(int $pageId): static { $this->pageId = $pageId; return $this; } public function getUserId(): ?int { return $this->userId; } public function setUserId(int $userId): static { $this->userId = $userId; return $this; } public function getTorrentsId(): array { return $this->torrentsId; } public function setTorrentsId(array $torrentsId): static { $this->torrentsId = $torrentsId; return $this; } public function getAdded(): ?int { return $this->added; } public function setAdded(int $added): static { $this->added = $added; return $this; } public function isApproved(): ?bool { return $this->approved; } public function setApproved(bool $approved): static { $this->approved = $approved; return $this; } }