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.
| 1234567891011121314151617181920 |
- <?php
-
- namespace App\Contracts;
-
- interface ExportableReport
- {
- public function getTitle(): string;
-
- public function getHeaders(): array;
-
- public function getCategories(): array;
-
- public function getOverallTotals(): array;
-
- public function getRightAlignedColumns(): array;
-
- public function getLeftAlignedColumns(): array;
-
- public function getCenterAlignedColumns(): array;
- }
|