2020-05-23 14:04:23 +08:00
|
|
|
<?php
|
2020-11-29 09:29:14 +08:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2020-05-23 14:04:23 +08:00
|
|
|
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
|
|
|
}
|