コード例 #1
0
ファイル: IndexResource.php プロジェクト: rtens/domin-sample
 private function assembleAuthor(Post $post)
 {
     $author = $this->authorService->show($post->getAuthor()->getId());
     return ['name' => $author->getName()];
 }