示例#1
0
 /**
  * {@inheritdoc}
  */
 public function getState()
 {
     return \igorw\get_in($this->raw->getStatus(), ['name']);
 }
示例#2
0
 public function it_returns_the_state(Issue $issue)
 {
     $issue->getStatus()->shouldBeCalled()->willReturn(['name' => 'open']);
     $this->getState()->shouldReturn('open');
 }