Total Complexity | 4 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class ProcessOutput |
||
6 | { |
||
7 | private $all; |
||
8 | private $errors; |
||
9 | private $out; |
||
10 | |||
11 | public function __construct(array $all, array $errors, array $out) |
||
12 | { |
||
13 | $this->all = $all; |
||
14 | $this->errors = $errors; |
||
15 | $this->out = $out; |
||
16 | } |
||
17 | |||
18 | public function all(): array |
||
19 | { |
||
20 | return $this->all; |
||
21 | } |
||
22 | |||
23 | public function errors(): array |
||
24 | { |
||
25 | return $this->errors; |
||
26 | } |
||
27 | |||
28 | public function out(): array |
||
31 | } |
||
32 | } |
||
33 |