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

This commit is contained in:
JC5
2026-01-24 13:57:28 +01:00
parent 844470bf08
commit 4a4f1ff055
50 changed files with 795 additions and 740 deletions

View File

@@ -1,4 +1,7 @@
<?php
declare(strict_types=1);
/*
* TransactionGroupRequestsAuditLogEntry.php
* Copyright (c) 2026 james@firefly-iii.org
@@ -29,5 +32,11 @@ class TransactionGroupRequestsAuditLogEntry extends Event
{
use SerializesModels;
public function __construct(public Model $changer, public Model $auditable, public string $field, public mixed $before, public mixed $after) {}
public function __construct(
public Model $changer,
public Model $auditable,
public string $field,
public mixed $before,
public mixed $after
) {}
}