Total Complexity | 5 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | final class OutputExpectation implements ExpectationInterface |
||
14 | { |
||
15 | /** @var Regexp */ |
||
16 | private $regexp; |
||
17 | |||
18 | public function __construct(Regexp $regexp) |
||
19 | { |
||
20 | $this->regexp = $regexp; |
||
21 | } |
||
22 | |||
23 | public function getDescription(): string |
||
26 | } |
||
27 | |||
28 | public function handles(OutcomeInterface $outcome): bool |
||
31 | } |
||
32 | |||
33 | public function handle(OutcomeInterface $outcome): StatusInterface |
||
42 | } |
||
43 | } |
||
44 |