Total Complexity | 2 |
Total Lines | 24 |
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 | /** |
||
21 | * CommandException constructor. |
||
22 | * |
||
23 | * @param string $command |
||
24 | * @param string $output |
||
25 | * @param int $returnCode |
||
26 | */ |
||
27 | public function __construct(string $command, string $output, int $returnCode) |
||
38 |