ConsoleKit\Widgets\ProgressBar::__construct PHP Method

__construct() public method

public __construct ( ConsoleKit\TextWriter $writer = null, integer $total = 100, integer $size = 50, $showRemainingTime = true )
$writer ConsoleKit\TextWriter
$total integer
$size integer
    public function __construct(TextWriter $writer = null, $total = 100, $size = 50, $showRemainingTime = true)
    {
        $this->textWriter = $writer;
        $this->size = $size;
        $this->showRemainingTime = $showRemainingTime;
        $this->start($total);
    }