spaghettisolutions/xlsx-parser

View on GitHub
src/XLSXParser/Contracts/XLSXInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php declare(strict_types = 1);
 
namespace Spaghetti\XLSXParser\Contracts;
 
use Iterator;
 
/**
* @internal
*/
interface XLSXInterface
{
public function getIndex(string $name): int;
 
public function getRows(int $index): Iterator;
 
public function getWorksheets(): array;
}