Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class VoidOutcome implements OutcomeInterface |
||
11 | { |
||
12 | public function getType(): string |
||
13 | { |
||
14 | return self::TYPE_VOID; |
||
15 | } |
||
16 | |||
17 | public function mustBeHandled(): bool |
||
18 | { |
||
19 | return false; |
||
20 | } |
||
21 | |||
22 | public function getContent(): string |
||
23 | { |
||
24 | return ''; |
||
25 | } |
||
26 | |||
27 | public function __tostring(): string |
||
30 | } |
||
31 | } |
||
32 |