示例#1
0
 /**
  * {@inheritdoc}
  */
 public function getCommentCount()
 {
     return \igorw\get_in($this->raw->get('comment'), ['total']);
 }
示例#2
0
 public function it_returns_the_comment_count(Issue $issue)
 {
     $issue->get('comment')->shouldBeCalled()->willReturn(['total' => 7]);
     $this->getCommentCount()->shouldReturn(7);
 }