11 lines
162 B
PHP
11 lines
162 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace catcher\library\excel;
|
|
|
|
interface ExcelContract
|
|
{
|
|
public function headers(): array;
|
|
|
|
public function sheets();
|
|
} |