ConsoleKit\Widgets\ProgressBar::start PHP Method

start() public method

public start ( integer $total = 100 ) : ProgressBar
$total integer
return ProgressBar
    public function start($total = 100)
    {
        $this->value = 0;
        $this->total = $total;
        $this->startTime = time();
        return $this;
    }