Neos\Flow\Cli\CommandController::outputFormatted PHP Метод

outputFormatted() защищенный Метод

Formats the given text to fit into MAXIMUM_LINE_LENGTH and outputs it to the console window
См. также: outputLine()
protected outputFormatted ( string $text = '', array $arguments = [], integer $leftPadding ) : void
$text string Text to output
$arguments array Optional arguments to use for sprintf
$leftPadding integer The number of spaces to use for indentation
Результат void
    protected function outputFormatted($text = '', array $arguments = [], $leftPadding = 0)
    {
        $this->output->outputFormatted($text, $arguments, $leftPadding);
    }