src/Entity/AccountLog.php line 11

  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Gedmo\Loggable\Entity\MappedSuperclass\AbstractLogEntry;
  5. use App\Repository\AccountLogRepository;
  6. #[ORM\Table(name'account_log')]
  7. #[ORM\Entity(repositoryClassAccountLogRepository::class)]
  8. class AccountLog extends AbstractLogEntry
  9. {
  10.     private $formatData;
  11.     public function getFormatData(): ?array
  12.     {
  13.         return $this->data;
  14.     }
  15. }