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ů.

AccountTransactionDTO.php 402B

12345678910111213141516171819
  1. <?php
  2. namespace App\DTO;
  3. use App\Enums\Accounting\TransactionType;
  4. class AccountTransactionDTO
  5. {
  6. public function __construct(
  7. public ?int $id,
  8. public string $date,
  9. public string $description,
  10. public string $debit,
  11. public string $credit,
  12. public string $balance,
  13. public ?TransactionType $type,
  14. public ?array $tableAction,
  15. ) {}
  16. }