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

1234567891011121314151617181920
  1. <?php
  2. namespace App\Contracts;
  3. interface ExportableReport
  4. {
  5. public function getTitle(): string;
  6. public function getHeaders(): array;
  7. public function getCategories(): array;
  8. public function getOverallTotals(): array;
  9. public function getRightAlignedColumns(): array;
  10. public function getLeftAlignedColumns(): array;
  11. public function getCenterAlignedColumns(): array;
  12. }