Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
54 | public function addProcessCommand(string $shellCommand, int $startLine): CommandBuilder |
||
55 | { |
||
56 | $this->allCommands[] = new ProcessCommand( |
||
57 | $shellCommand, |
||
58 | $startLine, |
||
59 | $this->ignoreError, |
||
60 | $this->tty, |
||
61 | $this->deferred |
||
62 | ); |
||
63 | |||
64 | $this->reset(); |
||
65 | |||
66 | return $this; |
||
67 | } |
||
68 | |||
156 |