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

ReportDatesDTO.php 333B

12345678910111213141516
  1. <?php
  2. namespace App\DTO;
  3. use Illuminate\Support\Carbon;
  4. class ReportDatesDTO
  5. {
  6. public function __construct(
  7. public Carbon $fiscalYearStartDate,
  8. public Carbon $fiscalYearEndDate,
  9. public string $defaultDateRange,
  10. public Carbon $defaultStartDate,
  11. public Carbon $defaultEndDate,
  12. ) {}
  13. }