<?php
namespace App\Domain\Entity;
use App\Domain\Entity\Behavior\Identifiable;
use Gedmo\Timestampable\Traits\Timestampable;
/**
* Class RevisionLog
*
* @package App\Domain\Entity
*/
class StatisticLog
{
use Identifiable;
use Timestampable;
public const READ = 'read';
public const READ_LIST = 'read_list';
public const CLICK = 'click';
public function __construct(
public string $action,
public string $entity,
public ?Person $author = null,
public ?string $entityId = null,
public ?string $data = null,
public ?string $httpAgent = null,
) {}
}