mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-02-09 05:21:18 +00:00
🤖 Auto commit for release 'develop' on 2026-01-23
This commit is contained in:
@@ -60,14 +60,14 @@ interface JournalRepositoryInterface
|
||||
/**
|
||||
* Find a specific journal.
|
||||
*/
|
||||
public function find(int $journalId): null|TransactionJournal;
|
||||
public function find(int $journalId): ?TransactionJournal;
|
||||
|
||||
public function findByType(array $types): Collection;
|
||||
|
||||
/**
|
||||
* Get users very first transaction journal.
|
||||
*/
|
||||
public function firstNull(): null|TransactionJournal;
|
||||
public function firstNull(): ?TransactionJournal;
|
||||
|
||||
/**
|
||||
* Returns the destination account of the journal.
|
||||
@@ -81,14 +81,14 @@ interface JournalRepositoryInterface
|
||||
*/
|
||||
public function getJournalTotal(TransactionJournal $journal): string;
|
||||
|
||||
public function getLast(): null|TransactionJournal;
|
||||
public function getLast(): ?TransactionJournal;
|
||||
|
||||
public function getLinkNoteText(TransactionJournalLink $link): string;
|
||||
|
||||
/**
|
||||
* Return Carbon value of a meta field (or NULL).
|
||||
*/
|
||||
public function getMetaDateById(int $journalId, string $field): null|Carbon;
|
||||
public function getMetaDateById(int $journalId, string $field): ?Carbon;
|
||||
|
||||
/**
|
||||
* Returns the source account of the journal.
|
||||
|
||||
Reference in New Issue
Block a user