/**
  * @desc Fetch Article comments count
  *
  * @param Title $title - Article title
  * @return integer
  */
 public function articleCommentsCount(Title $title)
 {
     $articleCommentList = new ArticleCommentList();
     $articleCommentList->setTitle($title);
     return $articleCommentList->getCountAll();
 }