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

12345678910111213141516171819202122232425
  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 getRightAlignedColumns(): array;
  14. public function getLeftAlignedColumns(): array;
  15. public function getCenterAlignedColumns(): array;
  16. }