spaghettisolutions/xlsx-parser

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

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php declare(strict_types = 1);

namespace Spaghetti\XLSXParser\Contracts;

interface XLSXParserInterface
{
    public function open(string $path): XLSXInterface;
}