Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | namespace hanneskod\readmetester\Runner; |
||
8 | |||
9 | use hanneskod\readmetester\Example\ExampleObj; |
||
10 | |||
11 | final class VoidOutcome implements OutcomeInterface |
||
12 | { |
||
13 | use OutcomeDefaultsTrait; |
||
14 | |||
15 | public function __construct( |
||
16 | private ExampleObj $example, |
||
|
|||
17 | ) {} |
||
18 | |||
19 | public function isVoid(): bool |
||
20 | { |
||
21 | return true; |
||
22 | } |
||
23 | |||
24 | public function mustBeHandled(): bool |
||
25 | { |
||
26 | return false; |
||
27 | } |
||
39 |