src/Entity/UserLog.php line 11
<?phpnamespace App\Entity;use Doctrine\ORM\Mapping as ORM;use Gedmo\Loggable\Entity\MappedSuperclass\AbstractLogEntry;use App\Repository\UserLogRepository;#[ORM\Table(name: 'user_log')]#[ORM\Entity(repositoryClass: UserLogRepository::class)]class UserLog extends AbstractLogEntry{private $formatData;public function getFormatData(): ?array{return $this->data;}}