ExcelContract.php 162 B

1234567891011
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher\library\excel;
  4. interface ExcelContract
  5. {
  6. public function headers(): array;
  7. public function sheets();
  8. }