| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | public function __construct($command, $output, $returnCode) |
||
| 11 | { |
||
| 12 | $this->command = $command; |
||
| 13 | $this->output = $output; |
||
| 14 | $this->returnCode = $returnCode; |
||
| 15 | |||
| 16 | $message = 'Command "' . $command . '" exited with code ' . $returnCode . ': ' . $output; |
||
| 17 | parent::__construct($message); |
||
| 18 | } |
||
| 19 | |||
| 35 |