Autoformat lol

This commit is contained in:
James Cole
2026-01-23 15:09:50 +01:00
parent ae1347c550
commit 8f15a32bd6
1071 changed files with 21111 additions and 21687 deletions

View File

@@ -64,7 +64,7 @@ interface TransactionGroupRepositoryInterface
/**
* Find a transaction group by its ID.
*/
public function find(int $groupId): ?TransactionGroup;
public function find(int $groupId): null|TransactionGroup;
/**
* Return all attachments for all journals in the group.
@@ -79,7 +79,7 @@ interface TransactionGroupRepositoryInterface
/**
* Get the location of a journal or NULL.
*/
public function getLocation(int $journalId): ?Location;
public function getLocation(int $journalId): null|Location;
/**
* Return object with all found meta field things as Carbon objects.
@@ -94,7 +94,7 @@ interface TransactionGroupRepositoryInterface
/**
* Get the note text for a journal (by ID).
*/
public function getNoteText(int $journalId): ?string;
public function getNoteText(int $journalId): null|string;
/**
* Return all piggy bank events for all journals in the group.