2020-05-23 14:04:23 +08:00
|
|
|
<?php
|
|
|
|
namespace catcher\library\excel;
|
|
|
|
|
2020-05-25 19:47:54 +08:00
|
|
|
interface ExcelContract
|
2020-05-23 14:04:23 +08:00
|
|
|
{
|
|
|
|
public function headers(): array;
|
|
|
|
|
2020-05-25 19:47:54 +08:00
|
|
|
public function sheets();
|
2020-05-23 14:04:23 +08:00
|
|
|
}
|