# fluent-cart/1.3.21/vendor/openspout/openspout/src/Reader/RowIteratorInterface.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.3.21. 20 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.3.21/code/vendor/openspout/openspout/src/Reader/RowIteratorInterface.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.3.21/raw/vendor/openspout/openspout/src/Reader/RowIteratorInterface.php
- Modified: 2025-11-20T13:11:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-cart/1.3.21/code/vendor/openspout/openspout/src/Reader/RowIteratorInterface.php#L10-L20`.

```php
<?php

declare (strict_types=1);
namespace FluentCart\OpenSpout\Reader;

use FluentCart\OpenSpout\Common\Entity\Row;
interface RowIteratorInterface extends IteratorInterface
{
    /**
     * Cleans up what was created to iterate over the object.
     */
    #[\ReturnTypeWillChange]
    public function end();
    /**
     * @return null|Row
     */
    #[\ReturnTypeWillChange]
    public function current();
}

```
