Fix output of dump-autoload command to avoid interfering with warnings, refs #8397
parent
3a0d05c148
commit
050707ed0c
|
@ -63,11 +63,11 @@ EOT
|
|||
$apcu = $input->getOption('apcu') || $config->get('apcu-autoloader');
|
||||
|
||||
if ($authoritative) {
|
||||
$this->getIO()->writeError('<info>Generating optimized autoload files (authoritative)</info>', false);
|
||||
$this->getIO()->write('<info>Generating optimized autoload files (authoritative)</info>');
|
||||
} elseif ($optimize) {
|
||||
$this->getIO()->writeError('<info>Generating optimized autoload files</info>', false);
|
||||
$this->getIO()->write('<info>Generating optimized autoload files</info>');
|
||||
} else {
|
||||
$this->getIO()->writeError('<info>Generating autoload files</info>', false);
|
||||
$this->getIO()->write('<info>Generating autoload files</info>');
|
||||
}
|
||||
|
||||
$generator = $composer->getAutoloadGenerator();
|
||||
|
@ -78,11 +78,11 @@ EOT
|
|||
$numberOfClasses = $generator->dump($config, $localRepo, $package, $installationManager, 'composer', $optimize);
|
||||
|
||||
if ($authoritative) {
|
||||
$this->getIO()->overwriteError('<info>Generated optimized autoload files (authoritative) containing '. $numberOfClasses .' classes</info>');
|
||||
$this->getIO()->write('<info>Generated optimized autoload files (authoritative) containing '. $numberOfClasses .' classes</info>');
|
||||
} elseif ($optimize) {
|
||||
$this->getIO()->overwriteError('<info>Generated optimized autoload files containing '. $numberOfClasses .' classes</info>');
|
||||
$this->getIO()->write('<info>Generated optimized autoload files containing '. $numberOfClasses .' classes</info>');
|
||||
} else {
|
||||
$this->getIO()->overwriteError('<info>Generated autoload files containing '. $numberOfClasses .' classes</info>');
|
||||
$this->getIO()->write('<info>Generated autoload files containing '. $numberOfClasses .' classes</info>');
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Reference in New Issue