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