관리-도구
편집 파일: RowIteratorInterface.php
<?php declare(strict_types=1); namespace OpenSpout\Reader; use Iterator; use OpenSpout\Common\Entity\Row; /** * @extends Iterator<Row> */ interface RowIteratorInterface extends Iterator { public function current(): ?Row; }