firefly-iii/app/Models/AuditLogEntry.php

95 lines
3.1 KiB
PHP
Raw Normal View History

2022-10-01 22:37:38 -05:00
<?php
2022-10-16 12:29:53 -05:00
2022-10-01 22:37:38 -05: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 12:29:53 -05:00
declare(strict_types=1);
2022-10-01 22:37:38 -05:00
namespace FireflyIII\Models;
2022-12-29 12:42:26 -06:00
use Eloquent;
use Illuminate\Database\Eloquent\Builder;
2022-10-01 22:37:38 -05:00
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\MorphTo;
use Illuminate\Database\Eloquent\SoftDeletes;
2022-12-29 12:42:26 -06:00
use Illuminate\Support\Carbon;
2022-10-01 22:37:38 -05:00
/**
* Class AuditLogEntry
2022-12-11 03:32:25 -06:00
*
2022-12-29 12:42:26 -06:00
* @property-read Model|Eloquent $auditable
* @property-read Model|Eloquent $changer
* @method static Builder|AuditLogEntry newModelQuery()
* @method static Builder|AuditLogEntry newQuery()
2022-12-11 03:32:25 -06:00
* @method static \Illuminate\Database\Query\Builder|AuditLogEntry onlyTrashed()
2022-12-29 12:42:26 -06:00
* @method static Builder|AuditLogEntry query()
2022-12-11 03:32:25 -06:00
* @method static \Illuminate\Database\Query\Builder|AuditLogEntry withTrashed()
* @method static \Illuminate\Database\Query\Builder|AuditLogEntry withoutTrashed()
2022-12-29 12:42:26 -06:00
* @property int $id
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @property Carbon|null $deleted_at
* @property int $auditable_id
* @property string $auditable_type
* @property int $changer_id
* @property string $changer_type
* @property string $action
* @property array|null $before
* @property array|null $after
* @method static Builder|AuditLogEntry whereAction($value)
* @method static Builder|AuditLogEntry whereAfter($value)
* @method static Builder|AuditLogEntry whereAuditableId($value)
* @method static Builder|AuditLogEntry whereAuditableType($value)
* @method static Builder|AuditLogEntry whereBefore($value)
* @method static Builder|AuditLogEntry whereChangerId($value)
* @method static Builder|AuditLogEntry whereChangerType($value)
* @method static Builder|AuditLogEntry whereCreatedAt($value)
* @method static Builder|AuditLogEntry whereDeletedAt($value)
* @method static Builder|AuditLogEntry whereId($value)
* @method static Builder|AuditLogEntry whereUpdatedAt($value)
2023-03-08 23:33:23 -06:00
* @mixin Eloquent
2022-10-01 22:37:38 -05:00
*/
class AuditLogEntry extends Model
{
use SoftDeletes;
protected $casts = [
2022-10-02 07:37:50 -05:00
'before' => 'array',
'after' => 'array',
2022-10-01 22:37:38 -05:00
'created_at' => 'datetime',
'updated_at' => 'datetime',
'deleted_at' => 'datetime',
];
/**
*/
public function auditable(): MorphTo
{
return $this->morphTo();
}
/**
*/
public function changer(): MorphTo
{
return $this->morphTo();
}
}