2022-10-02 05:37:38 +02:00
|
|
|
<?php
|
2022-10-16 19:29:53 +02:00
|
|
|
|
2022-10-02 05:37:38 +02:00
|
|
|
/*
|
|
|
|
|
* AuditLogEntry.php
|
|
|
|
|
* Copyright (c) 2022 james@firefly-iii.org
|
|
|
|
|
*
|
|
|
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
|
|
|
|
*
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
2022-10-16 19:29:53 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2022-10-02 05:37:38 +02:00
|
|
|
namespace FireflyIII\Models;
|
|
|
|
|
|
2023-11-05 19:41:37 +01:00
|
|
|
use FireflyIII\Support\Models\ReturnsIntegerIdTrait;
|
|
|
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
2022-10-02 05:37:38 +02:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
use Illuminate\Database\Eloquent\Relations\MorphTo;
|
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
|
|
|
|
|
|
class AuditLogEntry extends Model
|
|
|
|
|
{
|
2023-11-05 19:41:37 +01:00
|
|
|
use ReturnsIntegerIdTrait;
|
2022-10-02 05:37:38 +02:00
|
|
|
use SoftDeletes;
|
|
|
|
|
|
|
|
|
|
public function auditable(): MorphTo
|
|
|
|
|
{
|
|
|
|
|
return $this->morphTo();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function changer(): MorphTo
|
|
|
|
|
{
|
|
|
|
|
return $this->morphTo();
|
|
|
|
|
}
|
2023-11-05 19:41:37 +01:00
|
|
|
|
|
|
|
|
protected function auditableId(): Attribute
|
|
|
|
|
{
|
2026-01-23 15:14:29 +01:00
|
|
|
return Attribute::make(get: static fn ($value): int => (int) $value);
|
2023-11-05 19:41:37 +01:00
|
|
|
}
|
2025-05-29 19:58:55 +02:00
|
|
|
|
2025-05-29 15:01:06 +02:00
|
|
|
protected function casts(): array
|
|
|
|
|
{
|
2026-01-23 15:09:50 +01:00
|
|
|
return ['before' => 'array', 'after' => 'array', 'created_at' => 'datetime', 'updated_at' => 'datetime', 'deleted_at' => 'datetime'];
|
2025-05-29 15:01:06 +02:00
|
|
|
}
|
2025-09-14 09:00:01 +02:00
|
|
|
|
|
|
|
|
protected function changerId(): Attribute
|
|
|
|
|
{
|
2026-01-23 15:14:29 +01:00
|
|
|
return Attribute::make(get: static fn ($value): int => (int) $value);
|
2025-09-14 09:00:01 +02:00
|
|
|
}
|
2022-10-02 05:37:38 +02:00
|
|
|
}
|