| 123456789101112131415161718192021222324252627 |
- <?php
- declare(strict_types=1);
- namespace App\Entity\Booking;
- // use DH\Auditor\Provider\Doctrine\Auditing\Annotation\Auditable;
- use ApiPlatform\Metadata\ApiResource;
- use Doctrine\ORM\Mapping as ORM;
- use Symfony\Component\Serializer\Annotation\Groups;
- // #[Auditable]
- #[ApiResource(operations: [])]
- #[ORM\Entity]
- class EducationalProjectAge
- {
- #[ORM\Id]
- #[ORM\Column]
- #[ORM\GeneratedValue]
- #[Groups('access_people_ref')]
- private ?int $id = null;
- public function getId(): ?int
- {
- return $this->id;
- }
- }
|