Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
12345678910111213141516171819202122232425 |
- <?php
-
- namespace App\Contracts;
-
- use App\DTO\ReportCategoryDTO;
- use App\Support\Column;
-
- interface HasSummaryReport
- {
- /**
- * @return Column[]
- */
- public function getSummaryColumns(): array;
-
- public function getSummaryHeaders(): array;
-
- /**
- * @return ReportCategoryDTO[]
- */
- public function getSummaryCategories(): array;
-
- public function getSummaryOverallTotals(): array;
-
- public function getSummaryPdfView(): string;
- }
|