AbstractBookingRecur.php 352 B

1234567891011121314151617181920212223
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Entity\Booking;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6. * Classe ... qui ...
  7. */
  8. #[ORM\MappedSuperclass]
  9. abstract class AbstractBookingRecur
  10. {
  11. #[ORM\Id]
  12. #[ORM\Column]
  13. #[ORM\GeneratedValue]
  14. protected ?int $id = null;
  15. public function getId(): ?int
  16. {
  17. return $this->id;
  18. }
  19. }