9 lines
136 B
PHP
9 lines
136 B
PHP
<?php
|
|
namespace catcher\library\excel;
|
|
|
|
interface ExcelContract
|
|
{
|
|
public function headers(): array;
|
|
|
|
public function sheets();
|
|
} |