EducationalProjectAge.php 467 B

123456789101112131415161718192021222324
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Entity\Booking;
  4. use DH\Auditor\Provider\Doctrine\Auditing\Annotation\Auditable;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use Symfony\Component\Serializer\Annotation\Groups;
  7. #[Auditable]
  8. #[ORM\Entity]
  9. class EducationalProjectAge
  10. {
  11. #[ORM\Id]
  12. #[ORM\Column]
  13. #[ORM\GeneratedValue]
  14. #[Groups("access_people_ref")]
  15. private ?int $id = null;
  16. public function getId(): ?int
  17. {
  18. return $this->id;
  19. }
  20. }