catchAdmin/extend/catcher/library/excel/ExcelContract.php
2020-05-25 22:39:00 +08:00

9 lines
136 B
PHP

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