fix financials
Tests / PHPUnit (push) Failing after 1m21s

This commit is contained in:
root
2026-07-18 22:57:40 -04:00
parent 068e739408
commit a30c1398a1
61 changed files with 10908 additions and 1775 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace App\Libraries;
class InvoiceLedgerResult
{
public function __construct(
public readonly int $invoiceId,
public readonly int $invoiceLineId,
public readonly array $ledger
) {
}
}