示例#1
0
 /**
  * {@inheritdoc}
  */
 public function getTags()
 {
     return $this->raw->getLabels();
 }
示例#2
0
 public function it_returns_its_tags(Issue $issue)
 {
     $issue->getLabels()->shouldBeCalled()->willReturn(['foo', 'bar']);
     $this->getTags()->shouldReturn(['foo', 'bar']);
 }