Symfony\Component\Console\Formatter\OutputFormatter::applyCurrentStyle PHP Method

applyCurrentStyle() private method

Applies current style from stack to text, if must be applied.
private applyCurrentStyle ( string $text ) : string
$text string Input text
return string Styled text
    private function applyCurrentStyle($text)
    {
        return $this->isDecorated() && strlen($text) > 0 ? $this->styleStack->getCurrent()->apply($text) : $text;
    }