Total Complexity | 5 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | final class OutputOutcome implements OutcomeInterface |
||
8 | { |
||
9 | /** @var string */ |
||
10 | private $output; |
||
11 | |||
12 | public function __construct(string $output) |
||
13 | { |
||
14 | $this->output = $output; |
||
15 | } |
||
16 | |||
17 | public function getType(): string |
||
18 | { |
||
19 | return self::TYPE_OUTPUT; |
||
20 | } |
||
21 | |||
22 | public function mustBeHandled(): bool |
||
23 | { |
||
24 | return true; |
||
25 | } |
||
26 | |||
27 | public function getContent(): string |
||
30 | } |
||
31 | |||
32 | public function getDescription(): string |
||
33 | { |
||
37 |