12345678910111213141516171819202122232425 |
- <?php
-
- namespace App\Contracts;
-
- use App\DTO\ReportCategoryDTO;
-
- interface ExportableReport
- {
- public function getTitle(): string;
-
- public function getHeaders(): array;
-
- /**
- * @return ReportCategoryDTO[]
- */
- public function getCategories(): array;
-
- public function getOverallTotals(): array;
-
- public function getRightAlignedColumns(): array;
-
- public function getLeftAlignedColumns(): array;
-
- public function getCenterAlignedColumns(): array;
- }
|