示例#1
0
 /**
  * {@inheritdoc}
  */
 public function getId()
 {
     return $this->raw->getKey();
 }
示例#2
0
 public function it_returns_the_id(Issue $issue)
 {
     $issue->getKey()->shouldBeCalled()->willReturn('FOO-7');
     $this->getId()->shouldReturn('FOO-7');
 }