addType('title', 'string'); $this->addType('userId', 'string'); } /** * @return array{id: int, title: string, userId: string} */ public function toArray(): array { return ['id' => $this->id, 'title' => $this->title, 'userId' => $this->userId]; } }