chobie\Jira\Issues\Walker::rewind PHP Method

rewind() public method

Rewind the Iterator to the first element.
public rewind ( ) : void
return void Any returned value is ignored.
    public function rewind()
    {
        $this->offset = 0;
        $this->startAt = 0;
        $this->current = 0;
        $this->max = 0;
        $this->total = null;
        $this->executed = false;
        $this->issues = array();
    }