id; } public function getTitle(): ?string { return $this->title; } public function setTitle(string $title): self { $this->title = $title; return $this; } public function getDescription(): ?string { return $this->description; } public function setDescription($description): self { $this->description = (string) $description; return $this; } /** * @return DocumentCategory */ public function getCategory(): ?DocumentCategory { return $this->category; } public function setCategory(DocumentCategory $category): self { $this->category = $category; return $this; } /** * Get scope * * @return \Chill\MainBundle\Entity\Scope */ public function getScope() { return $this->scope; } public function setScope($scope): self { $this->scope = $scope; return $this; } public function getUser() { return $this->user; } public function setUser($user): self { $this->user = $user; return $this; } public function getDate(): ?\DateTimeInterface { return $this->date; } public function setDate(\DateTimeInterface $date): self { $this->date = $date; return $this; } public function getObject(): ?StoredObject { return $this->object; } public function setObject(StoredObject $object = null) { $this->object = $object; return $this; } }