Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
42 | public function __construct( |
||
43 | string $shellCommand, |
||
44 | int $lineNumber, |
||
45 | bool $ignoreError, |
||
46 | bool $tty, |
||
47 | bool $deferred |
||
48 | ) { |
||
49 | $this->shellCommand = $shellCommand; |
||
50 | $this->ignoreError = $ignoreError; |
||
51 | $this->lineNumber = $lineNumber; |
||
52 | $this->tty = $tty; |
||
53 | $this->deferred = $deferred; |
||
54 | } |
||
55 | |||
96 |