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

9 lines
136 B
PHP
Raw Normal View History

<?php
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();
}