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 407B

1234567891011121314151617181920212223
  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. public function getPdfView(): string;
  15. }