Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class CommandException extends RuntimeException |
||
13 | { |
||
14 | /** @var string */ |
||
15 | protected $command; |
||
16 | |||
17 | /** @var string */ |
||
18 | protected $output; |
||
19 | |||
20 | /** @var int */ |
||
21 | protected $returnCode; |
||
22 | |||
23 | /** |
||
24 | * CommandException constructor. |
||
25 | * |
||
26 | * @param string $command |
||
27 | * @param string $output |
||
28 | * @param int $returnCode |
||
29 | */ |
||
30 | public function __construct(string $command, string $output, int $returnCode) |
||
41 |