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 665B

123456789101112131415161718192021222324
  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 ?EntityBalanceDTO $entityBalanceTotal = null,
  14. public ?PaymentMetricsDTO $overallPaymentMetrics = null,
  15. public array $fields = [],
  16. public ?string $reportType = null,
  17. public ?CashFlowOverviewDTO $overview = null,
  18. public ?Carbon $startDate = null,
  19. public ?Carbon $endDate = null,
  20. ) {}
  21. }