mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-05-07 20:32:26 +00:00
23 lines
322 B
PHP
23 lines
322 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models\Concerns;
|
|
|
|
use OwenIt\Auditing\Auditable;
|
|
|
|
trait CustomAuditable
|
|
{
|
|
use Auditable;
|
|
|
|
/**
|
|
* @var array<string>|null
|
|
*/
|
|
protected ?array $auditEvents = null;
|
|
|
|
public function disableAuditing(): void
|
|
{
|
|
$this->auditEvents = [];
|
|
}
|
|
}
|