|
@@ -166,7 +166,7 @@ discard block |
|
|
block discarded – undo |
|
166
|
166
|
{ |
|
167
|
167
|
$this->questionHelper = $this->command->getHelper('question'); |
|
168
|
168
|
$inputString = implode(PHP_EOL, $this->inputChoices); |
|
169
|
|
- $this->questionHelper->setInputStream($this->getInputStream($inputString.PHP_EOL)); |
|
|
169
|
+ $this->questionHelper->setInputStream($this->getInputStream($inputString . PHP_EOL)); |
|
170
|
170
|
|
|
171
|
171
|
$this->tester->execute(['command' => $name]); |
|
172
|
172
|
} |
|
@@ -177,7 +177,7 @@ discard block |
|
|
block discarded – undo |
|
177
|
177
|
private function iExecuteCommandAndConfirm($name) |
|
178
|
178
|
{ |
|
179
|
179
|
$this->questionHelper = $this->command->getHelper('question'); |
|
180
|
|
- $inputString = 'y'.PHP_EOL; |
|
|
180
|
+ $inputString = 'y' . PHP_EOL; |
|
181
|
181
|
$this->questionHelper->setInputStream($this->getInputStream($inputString)); |
|
182
|
182
|
|
|
183
|
183
|
$this->tester->execute(['command' => $name]); |
Please login to merge, or discard this patch.