outputFormatted() публичный Метод

Formats the given text to fit into the maximum line length and outputs it to the console window
См. также: outputLine()
public 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
 /**
  * Formats the given text to fit into MAXIMUM_LINE_LENGTH and outputs it to the
  * console window
  *
  * @param string $text Text to output
  * @param array $arguments Optional arguments to use for sprintf
  * @param integer $leftPadding The number of spaces to use for indentation
  * @return void
  * @see outputLine()
  * @api
  */
 protected function outputFormatted($text = '', array $arguments = [], $leftPadding = 0)
 {
     $this->output->outputFormatted($text, $arguments, $leftPadding);
 }