Contao\ZipReader::prev PHP Метод

prev() публичный Метод

Go to the previous file of the archive
public prev ( ) : ZipReader | boolean
Результат ZipReader | boolean The object instance or false if there is no previous file
    public function prev()
    {
        if ($this->intIndex <= 0) {
            return false;
        }
        --$this->intIndex;
        return $this;
    }