Contao\Model\Collection::prev PHP Method

prev() public method

Go to the previous row
public prev ( ) : static | false
return static | false The model collection object or false if there is no previous row
    public function prev()
    {
        if ($this->intIndex < 1) {
            return false;
        }
        --$this->intIndex;
        return $this;
    }