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
@@ -0,0 +1,13 @@
<?php
namespace App\Libraries;
class FinancialPersistenceException extends \RuntimeException
{
public function __construct(
public readonly string $codeName,
public readonly array $details = []
) {
parent::__construct($codeName);
}
}