1
0
Fork 0

feat(buffer-io): add question helper set

pull/7868/head
fancyweb 2019-01-02 23:38:11 +01:00
parent 003b62cee5
commit 45a7b8e1c2
1 changed files with 4 additions and 1 deletions

View File

@ -12,6 +12,7 @@
namespace Composer\IO;
use Symfony\Component\Console\Helper\QuestionHelper;
use Symfony\Component\Console\Output\StreamOutput;
use Symfony\Component\Console\Formatter\OutputFormatterInterface;
use Symfony\Component\Console\Input\StringInput;
@ -34,7 +35,9 @@ class BufferIO extends ConsoleIO
$output = new StreamOutput(fopen('php://memory', 'rw'), $verbosity, $formatter ? $formatter->isDecorated() : false, $formatter);
parent::__construct($input, $output, new HelperSet(array()));
parent::__construct($input, $output, new HelperSet(array(
new QuestionHelper(),
)));
}
public function getOutput()