You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ExportableReport.php 364B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Contracts;
  3. use App\DTO\ReportCategoryDTO;
  4. interface ExportableReport
  5. {
  6. public function getTitle(): string;
  7. public function getHeaders(): array;
  8. /**
  9. * @return ReportCategoryDTO[]
  10. */
  11. public function getCategories(): array;
  12. public function getOverallTotals(): array;
  13. public function getColumns(): array;
  14. }