コード例 #1
0
ファイル: PostService.php プロジェクト: nebuchar/ddd-blog
 /**
  * Returns post by id
  *
  * @param int $id
  * @return Post
  */
 public function getPost($id)
 {
     return $this->postRepository->findById($id);
 }