article = $article; // } function basicJsonSerialize() { return [ 'id' => $this->id, 'author' => $this->author, 'text' => $this->text ]; } public function jsonSerialize(): mixed { $basicJson = $this->basicJsonSerialize(); // $basicJson['articleId'] = $this->article->id; return $basicJson; } }