sendJson($this->commentDao->getComments()); } function getDoComment(int $commentId): void { $comment = $this->commentDao->getCommentById($commentId); if($comment === null) { throw new PageNotFoundException(); } else { $this->sendJson($comment); } } }