ConsoleKit\Widgets\ProgressBar::write PHP Метод

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

Writes the rendered progress bar to the text writer
public write ( ) : ProgressBar
Результат ProgressBar
    public function write()
    {
        if ($this->textWriter === null) {
            throw new ConsoleException('No TextWriter object specified');
        }
        $this->textWriter->write($this->render());
        return $this;
    }