PlaceSystem.php 259 B

1234567891011121314151617
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Entity\Place;
  4. // use DH\Auditor\Provider\Doctrine\Auditing\Annotation\Auditable;
  5. use Doctrine\ORM\Mapping as ORM;
  6. /**
  7. * Classe ... qui ...
  8. */
  9. // #[Auditable]
  10. #[ORM\Entity]
  11. class PlaceSystem extends Place
  12. {
  13. }