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