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.

ReportCategoryDTO.php 307B

123456789101112131415161718
  1. <?php
  2. namespace App\DTO;
  3. class ReportCategoryDTO
  4. {
  5. /**
  6. * @param string[] $header
  7. * @param string[][] $data
  8. * @param string[] $summary
  9. */
  10. public function __construct(
  11. public array $header,
  12. public array $data,
  13. public array $summary,
  14. ) {
  15. }
  16. }