addType('owner', 'string'); $this->addType('title', 'string'); $this->addType('content', 'string'); $this->addType('preview', 'string'); } #[ReturnTypeWillChange] public function jsonSerialize() { return [ 'id' => $this->getId(), 'owner' => $this->getOwner(), 'title' => $this->getTitle(), 'content' => $this->getContent(), 'preview' => $this->getPreview(), ]; } }