您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ReportCategoryDTO.php 352B

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