1234567891011121314151617181920212223 |
- <?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 getColumns(): array;
-
- public function getPdfView(): string;
- }
|