Skip to content

Commit aea9128

Browse files
committed
Fixed default type in JournalItem
1 parent 8969963 commit aea9128

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Entity/JournalItem.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ class JournalItem implements PropertiesInterface
1212

1313
protected string|null $associateId = null;
1414

15-
protected float|string $credit;
15+
protected float|string|null $credit = null;
1616

17-
protected float|string $debit;
17+
protected float|string|null $debit = null;
1818

1919
protected string|null $description = null;
2020

0 commit comments

Comments
 (0)