catchAdmin/extend/catcher/library/excel/ExcelContract.php
2020-05-25 19:47:54 +08:00

11 lines
173 B
PHP

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