/var/www/vhosts/nabawater/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet
Edit: /var/www/vhosts/nabawater/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Iterator.php (1421B)
subject = $subject;
}
/**
* Destructor.
*/
public function __destruct()
{
unset($this->subject);
}
/**
* Rewind iterator.
*/
public function rewind()
{
$this->position = 0;
}
/**
* Current Worksheet.
*
* @return Worksheet
*/
public function current()
{
return $this->subject->getSheet($this->position);
}
/**
* Current key.
*
* @return int
*/
public function key()
{
return $this->position;
}
/**
* Next value.
*/
public function next()
{
++$this->position;
}
/**
* Are there more Worksheet instances available?
*
* @return bool
*/
public function valid()
{
return $this->position < $this->subject->getSheetCount() && $this->position >= 0;
}
}