Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | final class VoidOutcome implements OutcomeInterface |
||
8 | { |
||
9 | public function getType(): string |
||
10 | { |
||
11 | return self::TYPE_VOID; |
||
12 | } |
||
13 | |||
14 | public function mustBeHandled(): bool |
||
15 | { |
||
16 | return false; |
||
17 | } |
||
18 | |||
19 | public function getContent(): string |
||
20 | { |
||
21 | return ''; |
||
22 | } |
||
23 | |||
24 | public function getDescription(): string |
||
27 | } |
||
28 | } |
||
29 |