catchAdmin/extend/catcher/library/excel/ExcelContract.php
JaguarJack 94c430f491 update
2020-11-29 09:29:14 +08:00

11 lines
162 B
PHP

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