Contao\Database\Result::reset PHP 메소드

reset() 공개 메소드

Reset the current result
public reset ( ) : Result
리턴 Result The result object
    public function reset()
    {
        $this->intIndex = -1;
        $this->blnDone = false;
        $this->arrCache = array();
        return $this;
    }