Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

AccountDTO.php 305B

123456789101112131415
  1. <?php
  2. namespace App\DTO;
  3. class AccountDTO
  4. {
  5. public function __construct(
  6. public string $accountName,
  7. public string $accountCode,
  8. public ?int $accountId,
  9. public AccountBalanceDTO $balance,
  10. public ?string $startDate,
  11. public ?string $endDate,
  12. ) {}
  13. }