| 12345678910111213141516171819202122232425 |
- <?php
- declare(strict_types=1);
- namespace App\Entity\Billing;
- //use DH\Auditor\Provider\Doctrine\Auditing\Annotation\Auditable;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * Classe ... qui ...
- */
- //#[Auditable]
- #[ORM\Entity]
- class BillPeriod
- {
- #[ORM\Id]
- #[ORM\Column]
- #[ORM\GeneratedValue]
- private ?int $id = null;
- public function getId(): ?int
- {
- return $this->id;
- }
- }
|