function ConsoleIO::__construct
Constructor.
Parameters
InputInterface $input The input instance:
OutputInterface $output The output instance:
HelperSet $helperSet The helperSet instance:
2 calls to ConsoleIO::__construct()
- BufferIO::__construct in vendor/
composer/ composer/ src/ Composer/ IO/ BufferIO.php - Constructor.
- BufferIO::__construct in vendor/
composer/ composer/ src/ Composer/ IO/ BufferIO.php - Constructor.
1 method overrides ConsoleIO::__construct()
- BufferIO::__construct in vendor/
composer/ composer/ src/ Composer/ IO/ BufferIO.php - Constructor.
File
-
vendor/
composer/ composer/ src/ Composer/ IO/ ConsoleIO.php, line 56
Class
- ConsoleIO
- The Input/Output helper.
Namespace
Composer\IOCode
public function __construct(InputInterface $input, OutputInterface $output, HelperSet $helperSet) {
$this->input = $input;
$this->output = $output;
$this->helperSet = $helperSet;
$this->verbosityMap = [
self::QUIET => OutputInterface::VERBOSITY_QUIET,
self::NORMAL => OutputInterface::VERBOSITY_NORMAL,
self::VERBOSE => OutputInterface::VERBOSITY_VERBOSE,
self::VERY_VERBOSE => OutputInterface::VERBOSITY_VERY_VERBOSE,
self::DEBUG => OutputInterface::VERBOSITY_DEBUG,
];
}