/**
  * Formats the given text to fit into $this->output->getMaximumLineLength() 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 = array(), $leftPadding = 0)
 {
     $this->output->outputFormatted($text, $arguments, $leftPadding);
 }