Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

ReportDTO.php 486B

123456789101112131415161718192021
  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 array $fields = [],
  13. public ?string $reportType = null,
  14. public ?CashFlowOverviewDTO $overview = null,
  15. public ?Carbon $startDate = null,
  16. public ?Carbon $endDate = null,
  17. ) {}
  18. }