コード例 #1
0
 public function show()
 {
     $movie = new Movies((int) $_GET["id"]);
     $newcomment = $this->getCommentFormData();
     $comments = $movie->comments();
     $tags = $movie->getTags();
     $view = new SingleMovieView(compact('movie', 'newcomment', 'comments', 'tags'));
     $view->render();
 }