BillAccessDetail.php 500 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Entity\Billing;
  4. // use DH\Auditor\Provider\Doctrine\Auditing\Annotation\Auditable;
  5. use Doctrine\ORM\Mapping as ORM;
  6. /**
  7. * Classe ... qui ...
  8. */
  9. // #[Auditable]
  10. class BillAccessDetail
  11. {
  12. #[ORM\Id]
  13. #[ORM\Column]
  14. #[ORM\GeneratedValue]
  15. private ?int $id = null;
  16. public function getId(): ?int
  17. {
  18. return $this->id;
  19. }
  20. public function setId(?int $id): self
  21. {
  22. $this->id = $id;
  23. return $this;
  24. }
  25. }