Total Complexity | 5 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class OutputOutcome implements OutcomeInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | private $output; |
||
16 | |||
17 | public function __construct(string $output) |
||
20 | } |
||
21 | |||
22 | public function getType(): string |
||
25 | } |
||
26 | |||
27 | public function mustBeHandled(): bool |
||
28 | { |
||
29 | return true; |
||
30 | } |
||
31 | |||
32 | public function getContent(): string |
||
35 | } |
||
36 | |||
37 | public function __tostring(): string |
||
42 |