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.

ReportDTO.php 539B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\DTO;
  3. use Illuminate\Support\Carbon;
  4. class ReportDTO
  5. {
  6. public function __construct(
  7. /**
  8. * @var AccountCategoryDTO[]
  9. */
  10. public array $categories,
  11. public ?AccountBalanceDTO $overallTotal = null,
  12. public ?AgingBucketDTO $agingSummary = null,
  13. public array $fields = [],
  14. public ?string $reportType = null,
  15. public ?CashFlowOverviewDTO $overview = null,
  16. public ?Carbon $startDate = null,
  17. public ?Carbon $endDate = null,
  18. ) {}
  19. }