function Factory::createAdditionalStyles
Return value
array{highlight: OutputFormatterStyle, warning: OutputFormatterStyle}
1 call to Factory::createAdditionalStyles()
- Factory::createOutput in vendor/
composer/ composer/ src/ Composer/ Factory.php
File
-
vendor/
composer/ composer/ src/ Composer/ Factory.php, line 251
Class
- Factory
- Creates a configured instance of composer.
Namespace
ComposerCode
public static function createAdditionalStyles() : array {
return [
'highlight' => new OutputFormatterStyle('red'),
'warning' => new OutputFormatterStyle('black', 'yellow'),
];
}