catchAdmin/extend/catcher/library/excel/ExcelContract.php

11 lines
162 B
PHP
Raw Normal View History

<?php
2020-11-29 09:29:14 +08:00
declare(strict_types=1);
namespace catcher\library\excel;
2020-05-25 19:47:54 +08:00
interface ExcelContract
{
public function headers(): array;
2020-05-25 19:47:54 +08:00
public function sheets();
}