1 | <?php declare(strict_types=1); |
||
5 | class Result |
||
6 | { |
||
7 | private $exitCode = 0; |
||
8 | |||
9 | private $stdOut; |
||
10 | |||
11 | private $stdErr; |
||
12 | |||
13 | 21 | public function __construct(int $exitCode, string $stdOut, string $stdErr) |
|
19 | |||
20 | 16 | public function isSuccess(): bool |
|
24 | |||
25 | 2 | public function getOutput(): Output |
|
29 | |||
30 | 4 | public function getErrorMessage(): string |
|
34 | } |
||
35 |