function Application::run
Same name in this branch
- 11.1.x vendor/phpunit/phpunit/src/TextUI/Application.php \PHPUnit\TextUI\Application::run()
- 11.1.x vendor/symfony/console/Application.php \Symfony\Component\Console\Application::run()
Overrides Application::run
File
-
vendor/
composer/ composer/ src/ Composer/ Console/ Application.php, line 130
Class
- Application
- The console application that handles the commands
Namespace
Composer\ConsoleCode
public function run(?InputInterface $input = null, ?OutputInterface $output = null) : int {
if (null === $output) {
$output = Factory::createOutput();
}
return parent::run($input, $output);
}