. */ namespace SP\Domain\File\Ports; use SP\Infrastructure\File\FileException; /** * Class CsvFileHandler */ interface CsvFileHandler { /** * Read a CSV file * * @throws FileException */ public function readCsv(string $delimiter): iterable; }