🤖 Auto commit for release 'develop' on 2026-01-23

This commit is contained in:
JC5
2026-01-23 15:14:29 +01:00
parent 8f15a32bd6
commit eeeba86d38
888 changed files with 10732 additions and 10387 deletions
+5 -4
View File
@@ -50,7 +50,8 @@ class TransactionJournalLink extends Model
->leftJoin('transaction_journals as t_b', 't_b.id', '=', 'destination_id')
->where('t_a.user_id', auth()->user()->id)
->where('t_b.user_id', auth()->user()->id)
->first(['journal_links.*']);
->first(['journal_links.*'])
;
if (null !== $link) {
return $link;
}
@@ -89,16 +90,16 @@ class TransactionJournalLink extends Model
protected function destinationId(): Attribute
{
return Attribute::make(get: static fn($value): int => (int) $value);
return Attribute::make(get: static fn ($value): int => (int) $value);
}
protected function linkTypeId(): Attribute
{
return Attribute::make(get: static fn($value): int => (int) $value);
return Attribute::make(get: static fn ($value): int => (int) $value);
}
protected function sourceId(): Attribute
{
return Attribute::make(get: static fn($value): int => (int) $value);
return Attribute::make(get: static fn ($value): int => (int) $value);
}
}